自引用多对多 nhibernate 映射约定

发布于 2024-10-18 03:44:55 字数 278 浏览 0 评论 0 原文

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;}
}

如何针对这种情况设置映射约定?

谢谢

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;}
}

how to setup the mapping convention for this case?

thank you

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

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

发布评论

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

评论(1

挽手叙旧 2024-10-25 03:44:55

您确定要召开大会吗?我猜你只是想要一个流畅的映射。以下是我上次帮助某人解决此问题时的示例:

public class CustomerMap : ClassMap<Customer> 
{ 
    public CustomerMap() 
    { 
        Id(x => x.CustomerId); 
        Map(x => x.Birthday); 
        Map(x => x.FirstName); 

        HasManyToMany(x => x.Parents) 
            .ParentKeyColumn("ChildID") 
            .ChildKeyColumn("ParentID") 
            .Inverse(); 

        HasManyToMany(x => x.Children) 
            .ParentKeyColumn("ParentID") 
            .ChildKeyColumn("ChildID"); 
    } 
} 

请参阅此处 为原始线程。该线程有一个指向我为演示自引用多对多关系而制作的示例项目的链接,该项目是 此处

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:

public class CustomerMap : ClassMap<Customer> 
{ 
    public CustomerMap() 
    { 
        Id(x => x.CustomerId); 
        Map(x => x.Birthday); 
        Map(x => x.FirstName); 

        HasManyToMany(x => x.Parents) 
            .ParentKeyColumn("ChildID") 
            .ChildKeyColumn("ParentID") 
            .Inverse(); 

        HasManyToMany(x => x.Children) 
            .ParentKeyColumn("ParentID") 
            .ChildKeyColumn("ChildID"); 
    } 
} 

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.

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