QueryableFactoryMakeQueryableT Method |
Creates an
IQueryableT instance based on the given database
Namespace:
Couchbase.Lite
Assembly:
Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0033
Syntax public static IQueryable<T> MakeQueryable<T>(
IDatabase db
)
where T : class, new(), IDocumentModel
Parameters
- db
- Type: Couchbase.LiteIDatabase
The database to operate on
Type Parameters
- T
- The type of element to return from the query
Return Value
Type:
IQueryableTThe instantiated
IQueryableT instance
See Also