Here's the problem: in short I use comb.guid identity strategy and I
need all the rows made after the saved marker..

Here's dummy code example of what I am trying to get:

return session.Linq
                      .Where(p =>
p.Id.CompareTo(lastSyncedEntityIdentity) == 1 )
                      .ToList();


This throws an exception saying that CompareTo is not implemented...

System.NotImplementedException occurred
  Message=The method CompareTo is not implemented.
  Source=NHibernate.Linq
  StackTrace:
       at
NHibernate.Linq.Visitors.RootVisitor.VisitMethodCall(MethodCallExpression
expr) in e:\horn\.horn\orm\nhcontrib\nhibernate.linq\Working-2.1\src
\NHibernate.Linq\Visitors\RootVisitor.cs:line 97
  InnerException:

As you can see from stack I have tried the 1.1 version  from
http://www.hornget.net/packages/orm/nhcontrib/nhibernate.linq/

Any hint/clue what I have to do in order to go around this limitation
which I guess is impacting most of folks using comb.guid strategy?

Thanks,
Nikola

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to nhus...@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