开发者

NHibernate query against nested class

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.


Use a component mapping.

More information @ NHibernate nested class mapping issue

Then, using HQL or Linq to NHibernate, you would simple say something like string hql = "from Store s where s.Employee.Id = 3";


Can't be done currently.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜