4

我正在尝试创建一个代码优先模型,其中一个人可以拥有许多最喜欢的电影,但我不希望电影表中有一个 FK。

实现这一点的唯一方法是让 EF 在两个实体之间创建一个链接表,并做到这一点(afaik)我已经在与 Person 相关的 Movies 实体上创建了一个集合属性......

public class Person
{
    public int Id { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }

    public virtual IList<Movie> FavouriteMovies { get; set; }
}

public class Movie
{
    public int Id { get; set; }
    public string Name { get; set; }
    public virtual IList<Person> People { get; set; } // I don't want this here :(
}

我希望电影看起来像这样...

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

但这样做时,EF 不会创建链接表,它只会在 Movies 表中敲击 Person_Id FK 列。

我不希望这种情况发生,因为电影不应该与人有任何关系,我可能想将它与其他事物联系起来。

那我怎么吃蛋糕呢?

4

1 回答 1

1

它应该。你如何添加你的实体?这是一个示例:

public class Character : BaseEntity
{
    public string Name { get; set; }
    public bool IsEvil { get; set; }
    public virtual ICollection<Videogame> Videogames { get; set; } 
}
public class Videogame : BaseEntity 
{
    public string Name { get; set; }
    public DateTime ReleasedDate { get; set; }
    public virtual ICollection<Character> Characters { get; set; }
    public Author Author { get; set; }
}

这是添加记录的位置:

[Test]
public void CreateJoinTable()
{
    var character = new Character() {Name = "Wario", IsEvil = true};
    var videogame = new Videogame() {Name = "Super Mario Bros 20", ReleasedDate = DateTime.Now , Characters = new Collection<Character>()};
    videogame.Characters.Add(character);
    var context = new NerdContext();
    context.Add(videogame);
    context.SaveAllChanges();
}

这是片段的来源: http: //george2giga.com/2012/05/02/easy-join-tables-with-ef-code-first/

于 2012-06-07T15:33:08.497 回答