Hi, I wrote something like this:
queryableCollection.Skip(1).First(); The issue is with First() that will totally ignore the skip and always return the first item of the original collection. In VS with the debugger, what is returned by Skip is correct. So this is a major issue. My workaround is to write: queryableCollection.ToList().Skip(1).First(); which bypasses LinqToNH but that is a hit on the perf... I also found it mentioned here: http://marcinbudny.blogspot.com/2009/10/linq-to-nhibernate-first-bug.html Nicolas --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
