コード例 #1
0
ファイル: SqlExpressionParser.cs プロジェクト: ishui/rms
 protected virtual string EndsWith(string column, string value, bool ignoreCase)
 {
     return(SqlUtil.EndsWith(column, value, ignoreCase));
 }
コード例 #2
0
 protected override string EndsWith(string column, string value, bool ignoreCase)
 {
     value = SqlUtil.EndsWith(value);
     return(SqlUtil.Like(column, this.Parameters.GetParameter(value), ignoreCase, false));
 }