Legacy - to support unstructured where stuff
Inheritance: IWhere
Ejemplo n.º 1
0
        public IWhere Clone()
        {
            WhereString clone = new WhereString();

            clone.Where = Where;
            return(clone);
        }
Ejemplo n.º 2
0
        public virtual ISqlQuery AddWhereOr(string condition)
        {
            var cond = new WhereString(condition);

            MergeWhere(cond, JoinType.Or);
            return(this);
        }
Ejemplo n.º 3
0
 public IWhere Clone()
 {
     WhereString clone = new WhereString();
     clone.Where = Where;
     return clone;
 }
Ejemplo n.º 4
0
 public virtual ISqlQuery AddWhere(string condition)
 {
     WhereString where = new WhereString(condition);
     MergeWhere(where, JoinType.And);
     return(this);
 }
Ejemplo n.º 5
0
 public virtual ISqlQuery AddWhereOr(string condition)
 {
     var cond = new WhereString(condition);
     MergeWhere(cond, JoinType.Or);
     return this;
 }
Ejemplo n.º 6
0
 public virtual ISqlQuery AddWhere(string condition)
 {
     WhereString where = new WhereString(condition);
     MergeWhere(where, JoinType.And);
     return this;
 }