子类 ID 上的 Nhibernate 表每个子类标准使用父表中的键列
我在应用程序中使用每个子类表策略进行继承,如 Ayende 的帖子 此处。
但是,当我专门查询子类(例如 Company)并过滤 Id(我知道)时,生成的 SQL 不正确,并在 SQL Server 中给出错误。 标准:
session.CreateCriteria<Company>()
.Add(Expression.Eq("Id", 25)
.List<Company>();
生成的 SQL:
SELECT this_.PartyId,
this_.CompanyName
FROM Companies this_
inner join Parties this_1_
on this_PartyId = this_1_.Id
WHERE this_1_.PartyId = 25
问题(最后一行 - PartyId 未在 Parties 表上定义)是子表中的键列在父表中使用。 由于“Id”派生自 C# 中的 Party 类,因此它有点有意义。但为什么它使用键列“PartyId”而不是在 Party 映射中定义的 ID“Id”呢?我怎样才能让它发挥作用?
谢谢!
编辑:根据要求,这里是映射(与博客文章中的映射相同)
<class name="Party"
abstract="true"
table="Parties">
<id name="Id">
<generator class="identity"/>
</id>
<joined-subclass
table="People"
name="Person">
<key column="PartyId"/>
<property name="FirstName"/>
</joined-subclass>
<joined-subclass
table="Companies"
name="Company">
<key column="PartyId"/>
<property name="CompanyName"/>
</joined-subclass>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我终于找到了问题所在。
我在映射中犯了一个错误(我使用 Fluent NHibernate 给我上面看到的映射),并且我在 Party 类中映射了两次 Id :
由于“Id”被映射(不是作为 Id),当添加对于公司的 Id 的 where 子句,NHibernate 很困惑,并使用键列“PartyId”作为“Id”的映射列,非常混乱!
删除 Id 的第二个映射解决了该问题。
无论如何,我的错误!
I finally found the problem.
I had made a mistake in the mappings (I was using Fluent NHibernate to give me the mappings you see above) and I mapped twice the Id in the Party class :
Since "Id" was mapped (not as an Id), when adding a where clause to the Id of Company, NHibernate was confused and used the key column "PartyId" as the mapped column for "Id", quite confusing!
Removing the second mapping for Id solved the problem.
Anyway, my mistake!