Issue with Casting proxies when using NHibernate table per subclass inheritance strategy

谁都会走 提交于 2019-11-28 23:39:18

This is well explained by Oren here: http://ayende.com/Blog/archive/2009/09/03/answer-the-lazy-loaded-inheritance-many-to-one-association-orm.aspx

In a nutshell, proxies inherit from the type of the association, not the inherited type, because that is not known before going to the DB (and you can't change the type of an object)

Update: a possible workaround is leaking a reference to the actual object in Node:

public virtual Node Self { get { return this; } }

That will give you the underlying Asset or Place. Be careful with it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!