Click or drag to resize

BTreeSetOidShortKey Constructor

Creates a new BTreeSetOidShort

Namespace:  VelocityDb.Collection.BTree
Assembly:  VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax
public BTreeSetOidShort(
	VelocityDbComparer<Key> comparer = null,
	SessionBase session = null,
	ushort maxEntriesPerNode = 10000,
	ushort comparisonArraySize = 0,
	bool comparisonArrayIsCompleteKey = false
)

Parameters

comparer (Optional)
Type: VelocityDb.Collection.ComparerVelocityDbComparerKey
An object comparer. Try using CompareByField
session (Optional)
Type: VelocityDb.SessionSessionBase
The session managing this object
maxEntriesPerNode (Optional)
Type: SystemUInt16
Determines internal array and Page sizes
comparisonArraySize (Optional)
Type: SystemUInt16
Determine how many bytes to reserve for each object within a BTree node as a way to avoid actual object compares.
comparisonArrayIsCompleteKey (Optional)
Type: SystemBoolean
If the comparison array bytes are all that needs to be compared to determine ordering then set this to true; otherwise false
See Also