Beispiel #1
0
 protected virtual string StartsWith(string column, string value, bool ignoreCase)
 {
     return(SqlUtil.StartsWith(column, value, ignoreCase));
 }
 protected override string StartsWith(string column, string value, bool ignoreCase)
 {
     value = SqlUtil.StartsWith(value);
     return(SqlUtil.Like(column, this.Parameters.GetParameter(value), ignoreCase, false));
 }