Legacy - to support unstructured where stuff
상속: IWhere
예제 #1
0
파일: WhereString.cs 프로젝트: vebin/IQMap
        public IWhere Clone()
        {
            WhereString clone = new WhereString();

            clone.Where = Where;
            return(clone);
        }
예제 #2
0
파일: SqlQuery.cs 프로젝트: vebin/IQMap
        public virtual ISqlQuery AddWhereOr(string condition)
        {
            var cond = new WhereString(condition);

            MergeWhere(cond, JoinType.Or);
            return(this);
        }
예제 #3
0
 public IWhere Clone()
 {
     WhereString clone = new WhereString();
     clone.Where = Where;
     return clone;
 }
예제 #4
0
파일: SqlQuery.cs 프로젝트: vebin/IQMap
 public virtual ISqlQuery AddWhere(string condition)
 {
     WhereString where = new WhereString(condition);
     MergeWhere(where, JoinType.And);
     return(this);
 }
예제 #5
0
파일: SqlQuery.cs 프로젝트: saneman1/IQMap
 public virtual ISqlQuery AddWhereOr(string condition)
 {
     var cond = new WhereString(condition);
     MergeWhere(cond, JoinType.Or);
     return this;
 }
예제 #6
0
파일: SqlQuery.cs 프로젝트: saneman1/IQMap
 public virtual ISqlQuery AddWhere(string condition)
 {
     WhereString where = new WhereString(condition);
     MergeWhere(where, JoinType.And);
     return this;
 }