[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

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
 Copy imageCopy Code
java.util.List
variable in your persistent class.
- fill this variable with this method.

Example:

 Copy imageCopy Code
            class MyClass{
            List myList;
            }
            MyClass myObject = new MyClass();
            myObject.myList = objectContainer.ext().collections().newLinkedList();


See Also