QueryOver is a strongly-typed fluent-like wrapper on top of NHibernate ICritieria, a database-agnostic query API that supports query composition.
I'm trying to get a count from a query with a group by and just can't figure out how to …
nhibernate queryoverI'm refactoring old-style query CreateCriteria() to QueryOver(). My Wcf service gets string PropertyName to order queries results. For IQueryable I …
nhibernate nhibernate-criteria queryoverI'm trying to write this specific sql query in nHibernate QueryOver language, which I am not very familiar with: SELECT …
c# nhibernate queryoverTo start, yes, there are tons of similar questions here on Stack Overflow, but I've browsed them all and the …
nhibernate fluent-nhibernate mapping queryoverI have a problem. I have Persons and Cats. Each Person has some Cats (there is a foreign key in …
c# nhibernate fluent-nhibernate queryoverHow to do the following join to return Users who have access to a Company given a company id. The …
nhibernate join queryoverI'm trying to emulate subject query with NHibernate's IQueryOver. So far I have var q = CurrentSession.QueryOver<ObjectModel.Order&…
nhibernate queryoverI'm getting some unexpected behaviour with a JoinAlias QueryOver in NHibernate. My entity essentially looks like this: public class Field { …
c# nhibernate nullreferenceexception queryoverI have the following objects in a hierarchy A > B > C > D. Each object is mapped to …
c# nhibernate queryover