Ejemplo n.º 1
0
 public IQuery WhereFieldIn(FieldPath path, object[] values)
 {
     return(_wrapped.WhereFieldIn(path.ToNative(), values).ToAbstract());
 }
Ejemplo n.º 2
0
 public IQuery WhereArrayContainsAny(FieldPath path, object[] values)
 {
     return(_wrapped.WhereArrayContainsAny(path.ToNative(), values).ToAbstract());
 }
Ejemplo n.º 3
0
 public IQuery WhereGreaterThan(FieldPath path, object value)
 {
     return(_wrapped.WhereGreaterThan(path.ToNative(), value).ToAbstract());
 }
Ejemplo n.º 4
0
 public IQuery WhereLessThanOrEqualsTo(FieldPath path, object value)
 {
     return(_wrapped.WhereLessThanOrEqualsTo(path.ToNative(), value).ToAbstract());
 }
Ejemplo n.º 5
0
 public IQuery OrderBy(FieldPath path, bool @descending = false)
 {
     return(_wrapped.OrderedBy(path.ToNative(), descending).ToAbstract());
 }