Click or drag to resize

Query<TDocument>.NE<TValue> Method (Expression<Func<TDocument, IEnumerable<TValue>>>, 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.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public static IMongoQuery NE<TValue>(
	Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
	TValue value
)

Parameters

memberExpression
Type: System.Linq.Expressions.Expression<Func<TDocument, IEnumerable<TValue>>>
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