I am trying to mo开发者_如何学运维ck out or similar the Query extension method applied to an nhibernate-3 session. Similar to the following...
I have created a list of products - i.e. List manually in code. Is it possible with nhibernate to send along a List of Product and have it automatically add the details.
I\'m hitting a strange error when running a query in nhibernate using linq. If I run the query in directly in mysql, everything works. If I rerun the linq query, I get no error, but only the id field
Is this possible to use let keyword with nhibernate linq? I wrote var posts = from post in postsRepository.GetPosts(name)
My current project is using NHibernate 3.0b1 and the NHibernate.Linq.Query<T>() API. I\'m pretty fluent in LINQ, but I have absolutely no experience with HQL or the ICriteria API. One of my quer
Really quick question.. Does Linq2NHibernate always create a left join to retrieve relationships? 开发者_如何学CIs there a way that I can get an inner one instead?
The following LINQ to NHibernate (using NHibernate 3.0) results in a System.InvalidOperationException being th开发者_如何学运维rown with the message \"The binary operator Equal is not defined for the
I\'m currently building a web application with MVC and NHibernate. Now when i want to get information out of the database I get an index was out of range exception.
Whats the use of using custom comparers in Linq queries? Are they beneficial or are they just an overload on the server.
Suppose following codes: IEnumerable<MyClass> MakeQuery() { var query = from m in session.Linq<MyClass>()