防止 NHibernate 为创建外键映射

发布于 2024-09-16 06:36:42 字数 122 浏览 10 评论 0原文

有没有办法阻止 SchemaExport 生成外键约束 映射类型?我看到了一个关于映射的类似问题,但不幸的是这不适用于 .我在 NHibernate 参考文献中找不到这个问题的答案,但也许有人知道一个技巧?我想避免事后消除约束。

Is there a way from preventing SchemaExport from generating a foreign key constraint on
mapping type? I saw a similar question about mapping, but unfortunately that wont do for . I couldn't find answer to this in NHibernate reference, but maybe someone knows a trick? I'd like to avoid removing constraint afterwards.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌上青苔 2024-09-23 06:36:42

你能发布你的映射吗? 绝对不会创建外键。

示例:

<any id-type="Guid" meta-type="Int32" name="FooBarOrBaz">
  <meta-value value="1" class="Foo" />
  <meta-value value="2" class="Bar" />
  <meta-value value="3" class="Baz" />
  <column name="FooBarOrBazId" />
  <column name="FooBarOrBazType" />
</any>

这将仅创建两列(FooBarOrBazId 和 FooBarOrBazType),没有 FK

Could you post your mappings? <any> definitely does not create foreign keys.

Example:

<any id-type="Guid" meta-type="Int32" name="FooBarOrBaz">
  <meta-value value="1" class="Foo" />
  <meta-value value="2" class="Bar" />
  <meta-value value="3" class="Baz" />
  <column name="FooBarOrBazId" />
  <column name="FooBarOrBazType" />
</any>

This will just create two columns (FooBarOrBazId and FooBarOrBazType), with no FKs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文