QueryOver is a strongly-typed fluent-like wrapper on top of NHibernate ICritieria, a database-agnostic query API that supports query composition.
I have been searching for several hours now how to do this, but can't seem to find anything to help …
nhibernate subquery queryoverI want to simulate this query: SELECT * FROM FOO WHERE ID IN (1,2,3) How can I do this in FNH? var …
nhibernate queryoverIHave the following NHibernate query using a subquery: NHContext.Session.QueryOver<Item>() .WithSubquery.WhereProperty(x => x.ItemId).…
nhibernate queryoverI have an object model that looks like this (pseudo code): class Product { public ISet<Product> Recommendations {get; …
nhibernate queryoverI am trying to build a simple query in nHibernate with QueryOver but I want it to convert everything lower-case …
c# nhibernate queryoverI have the following query working which gets the results I want: int associatedId = 123; MyObject alias = null; var subQuery = QueryOver.…
nhibernate queryoverI am using Nhibernate. I am writing query through queryover method. I am able to write and clause as in …
c# sql nhibernate queryoverI have been struggling with this for a while, so I hope some of you QueryOver experts can help. I …
nhibernate queryoverI'm using NHibernate 3.0 with both the LINQ provider and QueryOver. Sometimes I want to eager load related data, and there …
nhibernate linq-to-nhibernate queryoverThough I was reading through the NHibernate Cookbook and all available forum-posts up and down, I'm still not able to …
nhibernate join aggregate queryover