Top "Linq-to-nhibernate" questions

A provider for NHibernate library for .NET Framework which allows to use LINQ queries.

Linq to NHibernate

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-nhibernate
Convert anonymous type to new C# 7 tuple type

The 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.0
Eagerly fetch multiple collection properties (using QueryOver/Linq)?

I found 2 similar questions: Multiple Fetches in linq to nhibernate Is this the right way of using ThenFetch() to load …

nhibernate linq-to-nhibernate queryover
Best way to delete all rows in a table using NHibernate?

To keep my integration tests independent I remove all old data and insert new test data before each test. Is …

nhibernate stored-procedures linq-to-nhibernate
NHibernate.Linq LIKE

How can I produce this query using NHibernate.Linq? WHERE this_.Name LIKE @p0; @p0 = 'test' // Notice NO % wild card …

linq nhibernate linq-to-nhibernate
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
'string' does not contain a definition for 'Contains'

I have a statement like so: var vals = from StandAloneUserPayment saup in _Session.Query<StandAloneUserPayment>() .Fetch(x => …

c# linq nhibernate linq-to-nhibernate
How to use join with multiple conditions in linq-to-Nhibernate

I have two classes (Request & RequestDetail). I need to a Linq To NHibernatequery between two classes by join. var …

c# linq nhibernate join linq-to-nhibernate
Nhibernate 3 Linq - inner joins

I'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-nhibernate
How can I run NHibenate queries asynchronously?

One 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