I'm using NHibernate. I have a class which has a nested type. Is there any way, using NHibernate, to query against the nested type, asides from using a native SQL query?
Nested classes are not allowed in HQL currently.
EDIT: The outer class has an IList of nested class instances.