3
使用.NET實體框架代碼首先我有兩個簡單的模型:實體框架的ICollection創建內部表
public class Car
{
public int CarId { get; set; }
public ICollection<Location> Locations { get; set; }
}
public class Location
{
public int LocationId { get; set; }
public ICollection<Car> Cars { get; set; }
}
這樣做第三個表與名稱創建:LocationCars。
有沒有辦法自定義這個生成的表的名稱?
非常感謝