[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)
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), _ comparison As Comparison(Of Extent) _ ) As IList(Of Extent) |
C# |
---|
IList<Extent> Query<Extent> ( Predicate<Extent> match, Comparison<Extent> comparison ) |
Visual C++ |
---|
generic<typename Extent> IList<Extent>^ Query ( Predicate<Extent>^ match, Comparison<Extent>^ comparison ) |
Parameters
- comparison
- System.Comparison<(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.Comparison
.