Summary
creates a new BigSet.
Characteristics of BigSet:
- It is optimized by using a BTree of IDs of persistent objects.
- It can only hold persistent first class objects (no primitives, no strings, no objects that are not persistent)
- Objects are activated upon getting them from the BigSet.
Characteristics of BigSet:
- It is optimized by using a BTree of IDs of persistent objects.
- It can only hold persistent first class objects (no primitives, no strings, no objects that are not persistent)
- Objects are activated upon getting them from the BigSet.
- Assembly
- Db4objects
.Db4o-2010 .dll - Namespace
- Db4objects
.Db4o .Collections - Containing Type
- CollectionFactory
Syntax
public virtual ISet<E> NewBigSet<E>()
Remarks
creates a new BigSet.
Characteristics of BigSet:
- It is optimized by using a BTree of IDs of persistent objects.
- It can only hold persistent first class objects (no primitives, no strings, no objects that are not persistent)
- Objects are activated upon getting them from the BigSet.
BigSet is recommend whenever one object references a huge number of other objects and sorting is not required.
Characteristics of BigSet:
- It is optimized by using a BTree of IDs of persistent objects.
- It can only hold persistent first class objects (no primitives, no strings, no objects that are not persistent)
- Objects are activated upon getting them from the BigSet.
BigSet is recommend whenever one object references a huge number of other objects and sorting is not required.
Type Parameters
Name | Description |
---|---|
E |
Return Value
Type | Description |
---|---|
ISet |