防止 Nhibernate schemaexport 在有很多关系的情况下生成外键约束

发布于 2024-09-01 01:23:00 字数 389 浏览 6 评论 0原文

我有一个像这样的映射:

HasMany(x => x.Orders).KeyColumn("CustomerID");

这导致 schemaexport 生成这样的约束:

alter table [CustomerOrder] 
    add constraint FK45B3FB85AF01218D 
    foreign key (CustomerID) 
    references [Customer]

我尝试像在 References() 映射上添加 .NotFound.Ignore() 来禁用生成约束,但这不起作用。

是否可以定义一个映射来强制 SchemaExport 不生成约束?

I have a mapping like this:

HasMany(x => x.Orders).KeyColumn("CustomerID");

Which is causing a constraint like this to be generated by schemaexport:

alter table [CustomerOrder] 
    add constraint FK45B3FB85AF01218D 
    foreign key (CustomerID) 
    references [Customer]

I have tried adding .NotFound.Ignore() like on a References() mapping to disable the constraint from being generated but this does not work.

Can a mapping be defined that will force SchemaExport to not generate the constraint?

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

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

发布评论

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

评论(1

街道布景 2024-09-08 01:23:00

想通了:

HasMany(x => x.Orders).KeyColumn("CustomerID").ForeignKeyConstraintName("none");

隐藏在源代码中的是一个检查,如果名称为“none”,则忽略创建

Figured it out:

HasMany(x => x.Orders).KeyColumn("CustomerID").ForeignKeyConstraintName("none");

buried in the source is a check to ignore creation if the name is "none"

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