Click or drag to resize

MongoQueryProvider Class

An implementation of IQueryProvider for querying a MongoDB collection.
Inheritance Hierarchy
SystemObject
  MongoDB.Driver.LinqMongoQueryProvider

Namespace:  MongoDB.Driver.Linq
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax
public class MongoQueryProvider : IQueryProvider

The MongoQueryProvider type exposes the following members.

Constructors
  NameDescription
Public methodMongoQueryProvider
Initializes a new instance of the MongoQueryProvider class.
Top
Properties
  NameDescription
Public propertyCollection
Gets the Collection.
Top
Methods
  NameDescription
Public methodBuildMongoQueryT
Builds the MongoDB query that will be sent to the server when the LINQ query is executed.
Public methodCreateQuery(Expression)
Creates a new instance MongoQueryable{{T}} for this provider. Calls the generic CreateQuery{{T}} to actually create the new MongoQueryable{{T}} instance.
Public methodCreateQueryT(Expression)
Creates a new instance of MongoQueryable{{T}} for this provider.
Public methodEquals (Inherited from Object.)
Public methodExecute(Expression)
Executes a query. Calls the generic method Execute{{T}} to actually execute the query.
Public methodExecuteTResult(Expression)
Executes a query.
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodToBson
Serializes an object to a BSON byte array.
(Defined by BsonExtensionMethods.)
Public Extension MethodToBsonDocument
Serializes an object to a BsonDocument.
(Defined by BsonExtensionMethods.)
Public Extension MethodToJson
Serializes an object to a JSON string.
(Defined by BsonExtensionMethods.)
Top
See Also