A provider for NHibernate library for .NET Framework which allows to use LINQ queries.
I have been looking around for some example projects or tutorials on Linq to Nhibernate. Does anyone know of any …
.net linq nhibernate linq-to-nhibernateThe new version of C# is there, with the useful new feature Tuple Types: public IQueryable<T> Query&…
linq-to-entities tuples anonymous-types linq-to-nhibernate c#-7.0I found 2 similar questions: Multiple Fetches in linq to nhibernate Is this the right way of using ThenFetch() to load …
nhibernate linq-to-nhibernate queryoverTo keep my integration tests independent I remove all old data and insert new test data before each test. Is …
nhibernate stored-procedures linq-to-nhibernateHow can I produce this query using NHibernate.Linq? WHERE this_.Name LIKE @p0; @p0 = 'test' // Notice NO % wild card …
linq nhibernate linq-to-nhibernateI 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 a statement like so: var vals = from StandAloneUserPayment saup in _Session.Query<StandAloneUserPayment>() .Fetch(x => …
c# linq nhibernate linq-to-nhibernateI have two classes (Request & RequestDetail). I need to a Linq To NHibernatequery between two classes by join. var …
c# linq nhibernate join linq-to-nhibernateI'm testing out nhibernate 3 CR, but fails to create the following SQL using Linq: select * from Users as {user} inner …
linq nhibernate linq-to-nhibernateOne way to increase scalability of the server application is to run IO-bound operation (reading files, sockets, web requests, database …
.net nhibernate asynchronous linq-to-nhibernate