I’m using NHibernate 3.2
Here is what i want to do (all atempts failed):
from Car c where (c.Tires.elements.Brand = 'Goodyear')
OR
from Car c, elements(c.Tires) as t where t.Brand = 'Goodyear'
Is it possible to do it without using joins? And how to do it with joins?
Thanks.
1 Answer