Hi, given this code:
session.CreateCriteria(typeof (Cat))
.SetFetchMode("nonExistentAssociation", FetchMode.Eager)
.List<Cat>();
where the class Cat doesn't have any property named nonExistentAssociation,
I was expecting that NH throws an exception pointing that
"nonExistentAssociation" is not a valid association path, but it does not.
Is this ok?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---