从这个问题开始:
鉴于我不能延迟加载属性或一对一关系,有没有办法可以将 IUserType 与多对一结合使用?像这样的东西(不起作用):
<many-to-one
name="Client" column="`ClientId`"
lazy="true"
type="EmployeeSystem.UserTypes.ClientUserType, EmployeeSystem" />
从这个问题开始:
鉴于我不能延迟加载属性或一对一关系,有没有办法可以将 IUserType 与多对一结合使用?像这样的东西(不起作用):
<many-to-one
name="Client" column="`ClientId`"
lazy="true"
type="EmployeeSystem.UserTypes.ClientUserType, EmployeeSystem" />
看起来 NHibernate 不支持IUserType
关联(多对一、一对一等)的自定义加载()。作为旁注,一对一的延迟加载是可能的,但同样没有办法放置IUserType
钩子。我认为您在惰性属性方面走在了正确的轨道上。使用显示如何加载 Employee 的代码更新原始问题。