Entity Framework - Fluent APi - Create table with 2 FK
问题 I have this product class which has a list of products associated. eg: Product = StarWar AssociatedProducts = Episode V: The Empire Strikes Back, Episode VI: Return of the Jedi, Episode VII: The Force Awakens But EF generates the database with some extra columns. This is my Product Class: public class Product { public int Id { get; set; } public string Name { get; set; } public string ShortDescription { get; set; } public string FullDescription { get; set; } public decimal UnitPrice { get;