public WhereList AND(string columnName, object betweenValue, object andValue) { var wl = new WhereList(); wl.Add(this); return wl.AND(columnName, betweenValue, andValue); }
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); }
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); }
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); }
public WhereList AND(WhereList whereList) { var wl = new WhereList(); wl.Add(this); return wl.AND(whereList); }
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); }
public WhereList AND(IPhrase phrase) { var wl = new WhereList(); wl.Add(this); return wl.AND(phrase); }
public WhereList AND(string literalExpression) { var wl = new WhereList(); wl.Add(this); return wl.AND(literalExpression); }
public WhereList AND(string columnName, object columnValue) { var wl = new WhereList(); wl.Add(this); return wl.AND(columnName, columnValue); }
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); }