如何在流利的nhibernate中更改FK名称
我想知道如何使用流畅的 nhibernate 更改 FK 的名称。
现在,它使所有外键(如(product_id,student_id))找到,但有一个表我希望它有一个不同的名称。
我希望课程表具有外键“MyFKName”,但它不断生成“student_id”
public CourseMap()
{
Id(x => x.Id);
References(x => x.Student).ForeignKey("MyFKName");
}
I am wondering how do I change the name of a FK with fluent nhibernate.
Right now it makes all the foreign keys like (product_id,student_id) what is find but there is one table I want it to have a different name.
I want the courses table to have for the foreign key "MyFKName" but it keeps generating "student_id"
public CourseMap()
{
Id(x => x.Id);
References(x => x.Student).ForeignKey("MyFKName");
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能正在寻找的是
ForeignKey
是外键约束的名称what you are probably looking for is
ForeignKey
is the name of the foreign key constraint