Hello,

I'm using NHibernate3.3.1 with PostgreSql (PostgreSQL82Dialect) and 
Npgsql-2.0.11.91 as provider.

I have the following LINQ query: 

var consulta =_sessao.Query<MyClass>().GroupBy(x => x.AnyProperty).Select(x 
=> x.Key).Skip(10).Take(10);

NHibernate is throwing a System.NotSupportedException (There is no support 
to this method)

If I remove the Skip() and Take() methods, the query works fine. Also, if I 
try the same query with SQLServer, it works ok too.

any idea how I can solve this issue?
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/-/e4LaHfpu4zUJ.
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