I'm using NHibernate.Linq and this query works like a charm
from ip in candidates
where
ip.Counters.Any( c=> c.Received > DateTime.Now )
select ip;
but unfortunately this query
from ip in candidates
where
ip.Counters.Any( c=> c.Received > ip.Uninstall )
select ip;
throws this error "NHibernate.QueryException : Could not find
property Uninstall"
Can someone help me ?
Many thanks
claudio
--
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=.