IMongoDatabaseExtensionsAsQueryable Method (IMongoDatabase, IClientSessionHandle, AggregateOptions) |
Creates a queryable source of documents.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public static IMongoQueryable<NoPipelineInput> AsQueryable(
this IMongoDatabase database,
IClientSessionHandle session,
AggregateOptions aggregateOptions = null
)
<ExtensionAttribute>
Public Shared Function AsQueryable (
database As IMongoDatabase,
session As IClientSessionHandle,
Optional aggregateOptions As AggregateOptions = Nothing
) As IMongoQueryable(Of NoPipelineInput)
[<ExtensionAttribute>]
static member AsQueryable :
database : IMongoDatabase *
session : IClientSessionHandle *
?aggregateOptions : AggregateOptions
(* Defaults:
let _aggregateOptions = defaultArg aggregateOptions null
*)
-> IMongoQueryable<NoPipelineInput>
Parameters
- database
- Type: MongoDB.DriverIMongoDatabase
The collection. - session
- Type: MongoDB.DriverIClientSessionHandle
The session. - aggregateOptions (Optional)
- Type: MongoDB.DriverAggregateOptions
The aggregate options
Return Value
Type:
IMongoQueryableNoPipelineInputA queryable source of documents.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IMongoDatabase. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also