vote up 0 vote down star

I need to create a query in NHibernate that would search for a product of two columns, like this:

WHERE a*b = param1

leaving efficiency aside (assume I have little rows or actual query will have extra conditions that will exploit some indexes) how do I do it in NHibernate? Preferably the solution should work with DetachedCriteria. I know I could use native SQL with Expression.Sql() but is there any other, better, way? Can I do this in HQL?

flag

1 Answer

vote up 1 vote down check

You can do this with HQL or Expression.Sql as you mentioned. HQL supports many different SQL expressions; see this section.

For example:

session.CreateQuery("from test t where t.a * t.b = 4").List();
link|flag

Your Answer

Get an OpenID
or

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