CSMongo.Query.MongoQuery.All C# (CSharp) Метод

All() публичный Метод

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

Same methods

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