I have a query object I am using which has the following function

public IQueryable<T> Execute(IRepository<T> repository)
{
        return repository.AsQueryable().Skip(skip).Take(take).OrderBy(t =>
t.OrderPosition);
}

I'm finding it's not working.  As soon as I remove the OrderBy it
works fine.  Would I be write in assuming this is a bug with
NHibernate.Linq or am I doing something wrong?

Thanks

John

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

Reply via email to