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