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