@@ -22,11 +22,14 @@ public class LikeExpression : AbstractCriterion
22
22
private char ? escapeChar ;
23
23
private readonly bool ignoreCase ;
24
24
private readonly IProjection projection ;
25
+ private readonly TypedValue typedValue ;
25
26
26
27
public LikeExpression ( string propertyName , string value , char ? escapeChar , bool ignoreCase )
27
28
{
28
29
this . projection = Projections . Property ( propertyName ) ;
29
30
this . value = value ;
31
+ typedValue = new TypedValue ( NHibernateUtil . String , this . value , EntityMode . Poco ) ;
32
+
30
33
this . escapeChar = escapeChar ;
31
34
this . ignoreCase = ignoreCase ;
32
35
}
@@ -35,6 +38,7 @@ public LikeExpression(IProjection projection, string value, MatchMode matchMode)
35
38
{
36
39
this . projection = projection ;
37
40
this . value = matchMode . ToMatchString ( value ) ;
41
+ typedValue = new TypedValue ( NHibernateUtil . String , this . value , EntityMode . Poco ) ;
38
42
}
39
43
40
44
@@ -80,11 +84,11 @@ public override SqlString ToSqlString(ICriteria criteria, ICriteriaQuery criteri
80
84
lhs . Add ( " like " )
81
85
. Add ( dialect . LowercaseFunction )
82
86
. Add ( StringHelper . OpenParen )
83
- . Add ( criteriaQuery . NewQueryParameter ( NHibernateUtil . String ) . Single ( ) )
87
+ . Add ( criteriaQuery . NewQueryParameter ( typedValue ) . Single ( ) )
84
88
. Add ( StringHelper . ClosedParen ) ;
85
89
}
86
90
else
87
- lhs . Add ( " like " ) . Add ( criteriaQuery . NewQueryParameter ( NHibernateUtil . String ) . Single ( ) ) ;
91
+ lhs . Add ( " like " ) . Add ( criteriaQuery . NewQueryParameter ( typedValue ) . Single ( ) ) ;
88
92
89
93
if ( escapeChar . HasValue )
90
94
lhs . Add ( " escape '" + escapeChar + "'" ) ;
@@ -94,7 +98,7 @@ public override SqlString ToSqlString(ICriteria criteria, ICriteriaQuery criteri
94
98
95
99
public override TypedValue [ ] GetTypedValues ( ICriteria criteria , ICriteriaQuery criteriaQuery )
96
100
{
97
- return new TypedValue [ ] { new TypedValue ( NHibernateUtil . String , value , EntityMode . Poco ) } ;
101
+ return new TypedValue [ ] { typedValue } ;
98
102
}
99
103
100
104
public override IProjection [ ] GetProjections ( )
0 commit comments