自引用多对多 nhibernate 映射约定
public class Node
{
public virtual int Id {get; set;}
public virtual string Name {get; set;}
public virtual IList<Node> Ancestors {get; set;}
public virtual IList<Node> Descendants {get; set;}
}
如何针对这种情况设置映射约定?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定要召开大会吗?我猜你只是想要一个流畅的映射。以下是我上次帮助某人解决此问题时的示例:
请参阅此处 为原始线程。该线程有一个指向我为演示自引用多对多关系而制作的示例项目的链接,该项目是 此处。
Are you sure you want a convention? I am going to guess you just want a fluent mapping. Here's an example from the last time I helped someone with this:
See here for the original thread. That thread has a link to an example project I made for demonstrating self referencing many-to-many relationships, which is here.