MongoDB.Driver.Builders.QueryConditionList.NE C# (CSharp) Méthode

NE() public méthode

Adds a $ne test to the query.
public NE ( BsonValue value ) : QueryConditionList
value BsonValue The value to compare to.
Résultat QueryConditionList
        public QueryConditionList NE(
            BsonValue value
        ) {
            conditions.Add("$ne", value);
            return this;
        }