如何在实体框架代码中首先处理自引用?

时间:2016-09-28 21:25:06

标签: c# sql-server entity-framework-6 many-to-many

这些是我的模型(简化):

public User()
{
        Friends = new HashSet<User>();
        Subscriptions = new HashSet<Subscription>();
        Tasks = new HashSet<Task>();
        Invitations = new HashSet<Invitation>();
        Events = new HashSet<Event>();
}

public Guid UserId { get; set; }
public DateTime MemberSince { get; set; }

[StringLength(450)]
[Index("UserNameIndex", IsUnique = true)]
public string NickName { get; set; }

public string FirstName { get; set; }
public string LastName { get; set; }
public string EmailAdress { get; set; }        
public string HashedPassword { get; set; }

public virtual ProfilePicture ProfilePicture { get; set; }

public bool Validated { get; set; } 

ICollection<Event> Events { get;  set; }
ICollection<User> Friends { get;  set; }

Event模型:

public class Event
{    
    public string EventName { get; set; }
    public Guid EventId { get; set; }
    public Guid UserId { get; set; } 
    public DateTime? Time { get; set; }
    public string Location { get; set; }
    public DateTime? EventDate { get; set; }        
    public virtual User User { get; set; }

    public ICollection<User> Participants { get; internal set; }        
}

以下是模型创建:

modelBuilder.Entity<User>().HasKey(u => u.UserId);
modelBuilder.Entity<User>().
             HasMany<User>(u => u.Friends).
             WithMany();

modelBuilder.Entity<User>().
             HasMany<Event>(u => u.Events).
             WithMany();

现在问题如下:我的表格如下:

似乎关系不是应该的方式......

User表:

enter image description here

Event表:

enter image description here

自动创建UserEvents

enter image description here

现在我需要在那里创建新事件(UserId)。我在Events表中获得了一个新条目+在UserEvents ....中获得了一个新条目。

我在这里缺少什么?

1 个答案:

答案 0 :(得分:1)

用户和事件之间有两种不同的关系。一对多关系和多对多关系。

第一个是事件与事件创建者之间的一对多关系(事件上的用户和用户ID属性) 当您使用所需的UserId添加新事件时,将不会在自动创建的UserEvents表中创建记录,因为您在此处具有一对多关系。因此,使用userid创建一个Event不会导致UserEvents表中的记录。

第二个是Event和它的参与者之间的多对多关系。当您向参与者添加活动时。也会在UserEvents表中插入记录。只有参与者才会出现在UserEvents表中。但是,您应该创建多对多映射,并在Event类中引用您的属性Participants,以实现此目的。

modelBuilder.Entity<User>().HasMany<Event>(u => u.Events).WithMany(m => m.Participants);