Hello

It actually does look like you are iterating over all orders ("var order") 
from each customer and having collections filter in that earlier query gets 
ignored

Rethink that query and maybe fetch Orders instead of Customers, the latter 
joined. Something like the following pseudo Linq/HQL:

from Order o 
join o.Owner
where o.LastModified > lastModifiedDate
select o

Regards
Tomasz

-- 
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.

Reply via email to