Tests that the value of the named element is equal to some value.
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
 Syntax
Syntaxpublic static IMongoQuery EQ(
	string name,
	BsonValue value
)
Public Shared Function EQ ( 
	name As String,
	value As BsonValue
) As IMongoQuery
static member EQ : 
        name : string * 
        value : BsonValue -> IMongoQuery 
Parameters
- name
- Type: SystemString
 The name of the element to test.
- value
- Type: MongoDB.BsonBsonValue
 The value to compare to.
Return Value
Type: 
IMongoQueryAn IMongoQuery.
 See Also
See Also