Linq to NHibernate [closed]

2020-01-25 15:47发布

I have been looking around for some example projects or tutorials on Linq to Nhibernate.

Does anyone know of any good ones?

9条回答
狗以群分
2楼-- · 2020-01-25 16:07

Linq to NHibernate has not many differences from any other Linq provider, apart from not being complete or fully tested and stable.

When you import NHibernate.Linq you get an extension method .Linq() that returns a IQueryable that can be used like any other Linq collection, so from here, any good Linq tutorial or explanation can help you.

The most interesting thing that you get with Linq to NHibernate IMHO is deferred execution. That is that the database is hit when you really need the results.

Hope this helps.

查看更多
【Aperson】
3楼-- · 2020-01-25 16:08
Juvenile、少年°
4楼-- · 2020-01-25 16:10

Here is one I have found. It talks about a few more technologies other than LINQ to NHibernate. But I still find it good. LINQ to NHibernate

查看更多
登录 后发表回答