Top "Nhibernate-criteria" questions

The NHibernate Criteria API allows performing dynamic, object oriented queries in NHibernate.

NHibernate Criteria Restriction vs Expression

If I search for NHibernate Criteria API query examples in internet there are examples that use Restrictions and others use …

nhibernate nhibernate-criteria
Querying with nHibernate where todays date is between publishDate and Expiry date

I am trying to figure out how to best query in NHibernate so that the returned results are between for …

nhibernate date date-range nhibernate-criteria
NHibernate AliasToBean transformer associations

I'm trying to use the following statement to get an entity with the fields I'm after: retVal = session.CreateCriteria(typeof(…

c# nhibernate nhibernate-criteria
Union with NHibernate and Criteria?

Union with NHibernate and Criteria: Is it possible in Criteria or QueryOver? If not, is there any other way to …

c# nhibernate union nhibernate-criteria
Criteria join with projection

I am going to create this SQL query's Criteria equivalent: SQL: SELECT orders.id, book.title, orderitem.quantity FROM orderitem …

hibernate criteria nhibernate-criteria
Nhibernate QueryOver. OrderBy using strings property names.

I'm refactoring old-style query CreateCriteria() to QueryOver(). My Wcf service gets string PropertyName to order queries results. For IQueryable I …

nhibernate nhibernate-criteria queryover