Is it possible to filter on a particular joined-subclass in NHibernate?
For example, I have the following classes:
Pet { Name }
Cat: Pet { Paws }
Budgie: Pet { Wings }
Person { Pets }
I want to create an NHibernate search to give me Persons with Cats with 4 paws.
I can only seem to be able to restrict on a Pet's attributes (Name)...