Looking at this link shows me that compiled queries can be used to improve performance in Linq to SQL apps (I\'ve seen other examples in Entity framework):
can anyone help me figure out what I\'m doing wrong. I\'m new to nhibernate andI\'m finding it quite hard to really get comfortable with it. I have t开发者_高级运维his query:
I am trying to perform a group by Linq query with NH3. Knowing the underling SQL difficulties I know it\'s not possible but Ideally I would like to do the group开发者_运维技巧 by an entity and have it
I\'ve got the following code: var data = (from v in this.GetSession().Query<WorkCellLoadGraphData>()
I am playing with FluentNHibernate and NH 3.0, using the LINQ provider and the new QueryOver syntax.
Hi I use NHiberante to fill my web app\'s paged and ordered grid. It was working just fine until i decided to put projection in action.
I\'m trying to create a method which create the where predicate to use later on a linq where method (Linq2NHibernate).
Using linq to NHibernate (NHibernate v3) I have the following LINQ query: var session = this.GetSession();
I\'ve got this object graph: // Lots of stuff omitted for brevity; these are all virtual properties and there
I\'ve been trying out NHibernate 3 and LINQ to NHibernate. I can\'t get it to spit out the correct T-SQL query.