[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Assembly: Db4objects.Db4o (in Db4objects.Db4o.dll)
creates a new database-aware linked list.
Namespace: Db4objects.Db4o.Types
Assembly: Db4objects.Db4o (in Db4objects.Db4o.dll)
Syntax
Visual Basic (Declaration) |
---|
Function NewLinkedList As IDb4oList |
C# |
---|
IDb4oList NewLinkedList () |
Visual C++ |
---|
IDb4oList^ NewLinkedList () |
Return Value
Db4objects.Db4o.Types.IDb4oList
Remarks
creates a new database-aware linked list.
Usage:
- declare a
variable in your persistent class.
- fill this variable with this method.
Example:
Usage:
- declare a
![]() | |
---|---|
java.util.List |
- fill this variable with this method.
Example:
![]() | |
---|---|
class MyClass{ List myList; } MyClass myObject = new MyClass(); myObject.myList = objectContainer.ext().collections().newLinkedList(); |