If it's a valid linq statement, then yes it would in general be good if it worked. It's only a matter of someone prioritizing the effort, so if you want to work on it go ahead.
The contributor guide is here, but I can't get github to render it properly: https://github.com/nhibernate/nhibernate-core/blob/master/Contributor%20Guide.html You should start by forking the project and clone it locally to read that guide. Then for this work create a feature branch based either on master or the 3.3.x branch. For more questions related to development of NHibernate you are welcome to post to the nhibernate-development group. /Oskar 2012/11/29 Rodrigo Sendin <[email protected]>: > Hello! > > Somebody know if this linq query should be supported by NHibernate? > > var result = sessao.Consulta() > .OrderBy(a => a.Sigla) > .Take(10) > .GroupBy(a => a.Sigla) > .OrderBy(a => a.Key) > .Select(a => new {Key = a.Key, ItemCount = a.Count()}); > > If this should be supported, I can help to implement. I just need some > initial introductions on how to contribute to the project. > > Thanks! > > -- > You received this message because you are subscribed to the Google Groups > "nhusers" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/nhusers/-/PirIUpJrDjQJ. > > 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. -- 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.
