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

Native Query Interface.

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

Syntax

Visual Basic (Declaration)
Function Query(Of Extent) ( _
	match As Predicate(Of Extent), _
	comparer As IComparer(Of Extent) _
) As IList(Of Extent)
C#
IList<Extent> Query<Extent> (
	Predicate<Extent> match,
	IComparer<Extent> comparer
)
Visual C++
generic<typename Extent>
IList<Extent>^ Query (
	Predicate<Extent>^ match, 
	IComparer<Extent>^ comparer
)

Parameters

match
System.Predicate<(Of T>)
comparer
System.Collections.Generic.IComparer<(Of T>)

Return Value

the Db4objects.Db4o.IObjectSet returned by the query.

Type Parameters

Extent

Remarks

Native Query Interface. Queries as with Db4objects.Db4o.IObjectContainer.Query(Predicate) , but will sort the resulting Db4objects.Db4o.IObjectSet according to the given System.Collections.Generic.IComparer .