CSMongo.Query.MongoQuery.All C# (CSharp) Method

All() public method

Finds fields that match all value within the record
public All ( string field ) : MongoQuery
field string
return MongoQuery
        public MongoQuery All(string field, params object[] values)
        {
            return this.AppendParameter(field, "$all", values);
        }

Same methods

MongoQuery::All ( string field, IEnumerable values ) : MongoQuery