Davita
Davita

Reputation: 9124

NHibernate.ISession does not contain a definition for Linq

I'm using NHibernate latest builds but unable to work with linq. I already added using NHibernate.Linq, so that's not the issue.

using (ISession session = NHibernateHelper.OpenSession())
{
    var sss = session.Linq<Category>().ToArray(); <-- Error mentioned above.
}

Looks like there is no extention method Linq() for ISession, despite the fact thath NHibernate.Linq is in uses list. Any idea?

Thanks

Upvotes: 10

Views: 4038

Answers (1)

Mauricio Scheffer
Mauricio Scheffer

Reputation: 99740

session.Linq<T>() is for the contrib provider for NHibernate 2.x

session.Query<T>() is for the built-in provider in NHibernate 3.x

Upvotes: 19

Related Questions