A provider for NHibernate library for .NET Framework which allows to use LINQ queries.
Using FNH, i am trying to retrieve categories, using the following: _session.QueryOver<Data.Model.Category>() .Where(c =&…
nhibernate fluent-nhibernate linq-to-nhibernateI'm using Fluent NHibernate in one of my projects (and ASP.NET MVC application), with LINQ to query to data (…
c# asp.net-mvc linq nhibernate linq-to-nhibernateI want to do paging with NHibernate when writing a Linq query. It's easy to do something like this: return …
linq nhibernate linq-to-nhibernateI am using Fluent NHibernate for my ORM. In doing so I am trying to use the NHibernate LINQ syntax …
c#-4.0 linq-to-nhibernateI'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 queryoverThe problem: Nhibernate parses each value in the "WHERE IN()" sql as parameters and MS SQL server doesn't support enough …
c# .net linq nhibernate linq-to-nhibernateIs it possible to get Nhibernate linq to generate a query with an "In" clause? e.g. - Where AnID …
linq nhibernate linq-to-nhibernateWhen I try to compile the following code using System; using System.Collections.Generic; using System.Reflection; using System.Linq; …
nhibernate linq-to-nhibernateI have 2 objects like this public class Child { public virtual int ChildId { get; set; } } public class Parent { public virtual int …
c# linq nhibernate fluent-nhibernate linq-to-nhibernate