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

query resultset.

Namespace: Db4objects.Db4o
Assembly:   Db4objects.Db4o (in Db4objects.Db4o.dll)

Syntax

Visual Basic (Declaration)
Public Interface IObjectSet
C#
public interface IObjectSet
Visual C++
public interface class IObjectSet

Remarks

query resultset.

An ObjectSet is a representation for a set of objects returned by a query.

ObjectSet extends the system collection interfaces java.util.List/System.Collections.IList where they are available. It is recommended, never to reference ObjectSet directly in code but to use List / IList instead.

Note that the underlying ObjectContainer of an ObjectSet needs to remain open as long as an ObjectSet is used. This is necessary for lazy instantiation. The objects in an ObjectSet are only instantiated when they are actually being used by the application.

See Also