我如何使用流畅的 nhibernate 自动映射多对一关系
我有以下课程:
public class Worker
{
public int WorkerID {get;set;}
public string Name { get;set;}
}
public class TransferOrder
{
public int TransferOrderID { get;set;}
public Worker workerTobeTransfered{get;set;}
}
如何在流畅的 nhibernate 中自动映射此类。
i have the following class:
public class Worker
{
public int WorkerID {get;set;}
public string Name { get;set;}
}
public class TransferOrder
{
public int TransferOrderID { get;set;}
public Worker workerTobeTransfered{get;set;}
}
how do i automap this classes in fluent nhibernate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,经过几次谷歌搜索,我找到了解决方案:
这是一个多对一关系,它使用 Reference() 方法进行映射,并且自动映射已经做到了这一点:
还有一篇很棒的文章提供了许多示例映射可以找到的情况
此处。
ok, after a few googling, i figured out the solution:
this is a many-to-one relation and it is mapped using Reference() Method, and the auto mapping already do that:
there is also a great article provide many examples of mapping situations which can be found
Here.