Hi,
I am trying to do group by and add take (top keyword).
NHibernate fail on:
System.NotImplementedException: The method or operation is not
implemented.
I am using version 3.2.0

10x
TD


                var x = from p in session.Query<TournamentID>
                        group p by p.TournamentID
                        into g
                        select new
                                   {
                                       TournamentID = g.Key,
                                       Count = g.Count()
                                   };

                var y = x.Take(4);

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to