Beispiel #1
0
 public WhereList AND(string columnName, object betweenValue, object andValue)
 {
     var wl = new WhereList();
     wl.Add(this);
     return wl.AND(columnName, betweenValue, andValue);
 }
Beispiel #2
0
 public WhereList AND(string tableName, string columnName, WhereComparison comparison, object columnValue)
 {
     var wl = new WhereList();
     wl.Add(this);
     return wl.AND(tableName, columnName, comparison, columnValue);
 }
Beispiel #3
0
 public WhereList AND(string tableName, string columnName, WhereComparison comparison, string otherTableName, string otherColumnName)
 {
     var wl = new WhereList();
     wl.Add(this);
     return wl.AND(tableName, columnName, comparison, otherTableName, otherColumnName);
 }
Beispiel #4
0
 public WhereList AND(IPhrase phrase, WhereComparison comparison, string tableName, string columnName)
 {
     var wl = new WhereList();
     wl.Add(this);
     return wl.AND(phrase, comparison, tableName, columnName);
 }
Beispiel #5
0
 public WhereList AND(WhereList whereList)
 {
     var wl = new WhereList();
     wl.Add(this);
     return wl.AND(whereList);
 }
Beispiel #6
0
 public WhereList AND(IPhrase phrase, WhereComparison comparison, object value, ValueObjectType valueType)
 {
     var wl = new WhereList();
     wl.Add(this);
     return wl.AND(phrase, comparison, value, valueType);
 }
Beispiel #7
0
 public WhereList AND(IPhrase phrase)
 {
     var wl = new WhereList();
     wl.Add(this);
     return wl.AND(phrase);
 }
Beispiel #8
0
 public WhereList AND(string literalExpression)
 {
     var wl = new WhereList();
     wl.Add(this);
     return wl.AND(literalExpression);
 }
Beispiel #9
0
 public WhereList AND(string columnName, object columnValue)
 {
     var wl = new WhereList();
     wl.Add(this);
     return wl.AND(columnName, columnValue);
 }
Beispiel #10
0
 public WhereList AND(object thisObject, ValueObjectType thisObjectType, WhereComparison comparison, object thatObject, ValueObjectType thatObjectType)
 {
     var wl = new WhereList();
     wl.Add(this);
     return wl.AND(thisObject, thisObjectType, comparison, thatObject, thatObjectType);
 }