1

このスキーマを使用して構成を行う方法は?

CREATE TABLE Entity
(
    Id int identity primary key,
    Name nvarchar(30)
)

CREATE TABLE Member
(
    ParentEntityId references Entity(Id),
    ChildEntityId references Entity(Id)
)
4

1 に答える 1

2

そのようです:

モデルクラス:

public class Entity
{
    public int Id { get; set; }
    public string Name { get; set; }

    public ICollection<Entity> Parents { get; set; }
    public ICollection<Entity> Children { get; set; }
}

マッピング:

modelBuilder.Entity<Entity>()
    .HasMany(e => e.Parents)
    .WithMany(e => e.Children)
    .Map(m =>
    {
        m.ToTable("Member");
        m.MapLeftKey("ParentEntityId");
        m.MapRightKey("ChildEntityId");
    });
于 2012-05-18T19:31:43.983 に答える