QueryCreate Method (String, BsonValue) | 
 
            Creates a query manually.
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic static IMongoQuery Create(
	string name,
	BsonValue condition
)
Public Shared Function Create ( 
	name As String,
	condition As BsonValue
) As IMongoQuery
static member Create : 
        name : string * 
        condition : BsonValue -> IMongoQuery 
Parameters
- name
 - Type: SystemString
The element name. - condition
 - Type: MongoDB.BsonBsonValue
The condition. 
Return Value
Type: 
IMongoQueryAn IMongoQuery.
See Also