【发布时间】:2018-12-19 10:48:53
【问题描述】:
我注意到很多 github 项目使用扩展实体的模型。
我正在关注一个教程,但它没有这样做。它只是一个普通的类。
public class Seller
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string URL { get; set; }
}
然后在这里我找到了扩展实体的模型:
是否有多个版本的 EF,如果我使用 Web API,我应该使用哪一个?
【问题讨论】:
标签: entity-framework asp.net-web-api2