Click or drag to resize

OptimizedPersistableOpenT Method (UInt32, Boolean, Boolean)

Opens a persistent object located in the same Database as this object

Namespace:  VelocityDb
Assembly:  VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax
public T Open<T>(
	uint pageSlot,
	bool update = false,
	bool inFlush = false
)

Parameters

pageSlot
Type: SystemUInt32
The OidShort encoded as a UInt32 of the object to open within the same Database as this object
update (Optional)
Type: SystemBoolean
Open the object for update?
inFlush (Optional)
Type: SystemBoolean
if true, disallow page flushing while opening the object

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:VelocityDb.OptimizedPersistable.Open``1(System.UInt32,System.Boolean,System.Boolean)"]

Return Value

Type: T
The opened object or null if it does not exist
See Also