How should be written the following query with the NHibernate's ICriteria API:
DetachedCriteria criteria = DetachedCriteria.For<Order>()
.Add(Restrictions.Eq("Property1 + Property2", confirmation.Ammount));
What I need is to compare an expression (Property1 + Property2) to given value (confirmation.Ammount).
I'm using NHibernate 2.0 (I can't switch to newer version at the moment).
Thanks
option 1
option 2
writing your own Projection see here