BTreeSetOidShortKey Constructor  | 
 
            Creates a new BTreeSetOidShort
            
 
    Namespace: 
   VelocityDb.Collection.BTree
    Assembly:
   VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntaxpublic BTreeSetOidShort(
	VelocityDbComparer<Key> comparer = null,
	SessionBase session = null,
	ushort maxEntriesPerNode = 10000,
	ushort comparisonArraySize = 0,
	bool comparisonArrayIsCompleteKey = false
)
Public Sub New ( 
	Optional comparer As VelocityDbComparer(Of Key) = Nothing,
	Optional session As SessionBase = Nothing,
	Optional maxEntriesPerNode As UShort = 10000,
	Optional comparisonArraySize As UShort = 0,
	Optional comparisonArrayIsCompleteKey As Boolean = false
)
public:
BTreeSetOidShort(
	VelocityDbComparer<Key>^ comparer = nullptr, 
	SessionBase^ session = nullptr, 
	unsigned short maxEntriesPerNode = 10000, 
	unsigned short comparisonArraySize = 0, 
	bool comparisonArrayIsCompleteKey = false
)
new : 
        ?comparer : VelocityDbComparer<'Key> * 
        ?session : SessionBase * 
        ?maxEntriesPerNode : uint16 * 
        ?comparisonArraySize : uint16 * 
        ?comparisonArrayIsCompleteKey : bool 
(* Defaults:
        let _comparer = defaultArg comparer null
        let _session = defaultArg session null
        let _maxEntriesPerNode = defaultArg maxEntriesPerNode 10000
        let _comparisonArraySize = defaultArg comparisonArraySize 0
        let _comparisonArrayIsCompleteKey = defaultArg comparisonArrayIsCompleteKey false
*)
-> BTreeSetOidShortParameters
- 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