QueryOver is a strongly-typed fluent-like wrapper on top of NHibernate ICritieria, a database-agnostic query API that supports query composition.
Hi Is there any elegant way of combining 'like' and 'or' when i'm using queryover API? for 'like' there is …
nhibernate queryoverI am playing with FluentNHibernate and NH 3.0, using the LINQ provider and the new QueryOver syntax. Now with QueryOver I …
linq nhibernate linq-to-nhibernate queryoverI have read a lot of the questions about that same error but none since to match my exact problem. …
c# nhibernate fluent-nhibernate queryoverI'm trying to convert a SQL query to NHibernate QueryOver syntax, but I don't understand how to sort by the …
nhibernate queryoverI have this tables: Person -> PersonFavorites, PersonCompany PersonCompany -> Company I have now to do the following …
nhibernate queryover nhibernate-3I need to do a subquery on a sub collection but I can't get it to work. I tried this …
nhibernate queryoverI'm looking to add a method to my base repository class that allows me to use LIKE expressions but I'm …
c# nhibernate queryoverSo I've spent the last few hours looking for an answer and I can't seem to find anything that makes …
c# linq nhibernate queryoverI'm trying to do this : var list = Session.QueryOver<Person>() .Where(x => x.LastName.Contains(searchText)) .List&…
c# nhibernate queryoverI know so far that a local variable or a local property can be used as an alias like so …
queryover nhibernate-3