Exemplo n.º 1
0
        public LiteFilter IN(object value1, params object[] otherValues)
        {
            ArrayList arrayConst = new ArrayList();

            arrayConst.Add(value1);
            arrayConst.AddRange(otherValues);
            return(LiteFilter.FieldIn(this, arrayConst));
        }
Exemplo n.º 2
0
 public LiteFilter IN(ArrayList constArray)
 {
     return(LiteFilter.FieldIn(this, constArray));
 }
Exemplo n.º 3
0
 public LiteFilter IN(LiteQuery subQuery)
 {
     return(LiteFilter.FieldIn(this, subQuery));
 }