vote up 3 vote down star

I'm trying to do a like search against an integer column, what I need to do is actually cast the column to a varchar and then do the like search. Is this possible? what's the easiest way to do this using the Criteria API?

var search = "123";
criteria.Add(Restrictions.Like("Number", "%" + search + "%"))
flag

1 Answer

vote up 3 vote down check

If Number were a string, then it would be easy :

.Add(Restrictions.Like("Number", "some_value",MatchMode.Anywhere))

Since you have a number, NHibernate will check the type of Number and if you give it a string it will throw an exception.

Not sure why the NH team didn't provide an overload with object as parameter and a MatchMode parameters ....

Anyhow, you can still do it like this :

.Add(Expression.Sql("{alias}.Number like ?", "%2%", NHibernateUtil.String))

Edit

About the alias :

(i can't find where the documentation talks about this but here's my understanding of it )

{alias} returns the alias used inside by NH for the most recent CreateCriteria. So if you had :

session.CreateCriteria<User>("firstAlias")
       .CreateCriteria("firstAlias.Document", "doc")
       .Add(Expression.Sql("{alias}.Number like ?", "%2%",  
                           NHibernateUtil.String)).List<User>();

{alias} in this case would be 'doc' - so you would end up with : doc.Number .

So, always use {alias} after the CreateCriteria whose alias you need to use.

link|flag
excellent, thank you. for the alias on the sql expression... i used "this_.Number" is that ok, am I guaranteed that NHibernate will always use this_.? – Jon Erickson Aug 5 at 17:35
because I did alias my criteria with "wi" - session.CreateCriteria<WorkItem>("wi") - but i can't use "wi.Number" in the sql expression because it puts it into the T-SQL literally (if that makes sense). – Jon Erickson Aug 5 at 17:37
and sense "wi" within the regular criteria creation calls actually get converted to "this_" in the T-SQL sent to the server i went ahead and put the alias in the sql expression to "this_.Number" – Jon Erickson Aug 5 at 17:38
@sirrocco - lol when you put "{alias}" in the sql expression I though you meant "put the alias you created for the criteria here".. I wasn't think that you meant to actually type "{alias}" literally. but this is perfect, i'd give you +10 if I could, this helped a ton. – Jon Erickson Aug 5 at 18:18
Glad I could help :) – sirrocco Aug 6 at 3:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.