Click or drag to resize

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.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public IMongoQuery NE<TValue>(
	Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
	TValue value
)

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: IMongoQuery
An IMongoQuery.
See Also