QueryBuilderTDocumentNETValue Method (ExpressionFuncTDocument, IEnumerableTValue, TValue) |
Tests that none of the values in the named array element is equal to some value (see $ne).
Namespace:
MongoDB.Driver.Builders
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public IMongoQuery NE<TValue>(
Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
TValue value
)
Public Function NE(Of TValue) (
memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
value As TValue
) As IMongoQuery
member NE :
memberExpression : Expression<Func<'TDocument, IEnumerable<'TValue>>> *
value : 'TValue -> IMongoQuery
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, IEnumerableTValue
The member expression representing the element to test. - value
- Type: TValue
The value to compare to.
Type Parameters
- TValue
- The type of the value.
Return Value
Type:
IMongoQueryAn IMongoQuery.
See Also