예제 #1
0
 public SqlWhereCondition RightLike(string fieldValue)
 {
     SqlWhereCondition where = new SqlWhereCondition(this.fieldName, fieldValue, dbtype, OperateSign.RightLike);
     return(where);
 }
예제 #2
0
 public SqlWhereCondition In(object fieldValue)
 {
     SqlWhereCondition where = new SqlWhereCondition(this.fieldName, fieldValue, dbtype, OperateSign.In);
     return(where);
 }
예제 #3
0
 public static SqlWhereCondition operator !=(SqlColumnCondition s1, object fieldValue)
 {
     SqlWhereCondition where = new SqlWhereCondition(s1.fieldName, fieldValue, s1.dbtype, OperateSign.NotEqual);
     return(where);
 }