防止 Nhibernate schemaexport 在有很多关系的情况下生成外键约束
我有一个像这样的映射:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了:
隐藏在源代码中的是一个检查,如果名称为“none”,则忽略创建
Figured it out:
buried in the source is a check to ignore creation if the name is "none"