Top "Queryover" questions

QueryOver is a strongly-typed fluent-like wrapper on top of NHibernate ICritieria, a database-agnostic query API that supports query composition.

queryover and (x like 'a' or y like 'a')

Hi Is there any elegant way of combining 'like' and 'or' when i'm using queryover API? for 'like' there is …

nhibernate queryover
NHibernate 3.0: No FirstOrDefault() with QueryOver?

I 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 queryover
Fluent NHibernate "Could not resolve property"

I have read a lot of the questions about that same error but none since to match my exact problem. …

c# nhibernate fluent-nhibernate queryover
NHibernate QueryOver with MaxResult, Group By and Order By

I'm trying to convert a SQL query to NHibernate QueryOver syntax, but I don't understand how to sort by the …

nhibernate queryover
Join multiple tables with NHibernate and QueryOver

I have this tables: Person -> PersonFavorites, PersonCompany PersonCompany -> Company I have now to do the following …

nhibernate queryover nhibernate-3
How to do subqueries in nhibernate?

I need to do a subquery on a sub collection but I can't get it to work. I tried this …

nhibernate queryover
nhibernate queryover LIKE with expression trees

I'm looking to add a method to my base repository class that allows me to use LIKE expressions but I'm …

c# nhibernate queryover
nhibernate queryover with complex join over non-related entities

So I've spent the last few hours looking for an answer and I can't seem to find anything that makes …

c# linq nhibernate queryover
Search text contains with QueryOver

I'm trying to do this : var list = Session.QueryOver<Person>() .Where(x => x.LastName.Contains(searchText)) .List&…

c# nhibernate queryover
What can be used as a NHibernate QueryOver alias?

I know so far that a local variable or a local property can be used as an alias like so …

queryover nhibernate-3