public IQuery WhereFieldIn(FieldPath path, object[] values) { return(_wrapped.WhereFieldIn(path.ToNative(), values).ToAbstract()); }
public IQuery WhereArrayContainsAny(FieldPath path, object[] values) { return(_wrapped.WhereArrayContainsAny(path.ToNative(), values).ToAbstract()); }
public IQuery WhereGreaterThan(FieldPath path, object value) { return(_wrapped.WhereGreaterThan(path.ToNative(), value).ToAbstract()); }
public IQuery WhereLessThanOrEqualsTo(FieldPath path, object value) { return(_wrapped.WhereLessThanOrEqualsTo(path.ToNative(), value).ToAbstract()); }
public IQuery OrderBy(FieldPath path, bool @descending = false) { return(_wrapped.OrderedBy(path.ToNative(), descending).ToAbstract()); }