摘要:
一、安装Entity Framework 6 在项目中右击选择“管理NuGet程序包",联机搜索Entity Framework,点击安装 二、配置数据库连接 在App.config中加入数据库连接字符串的配置 三、DbContext及实体类 public class MyContext:DbContext { public MyContext() : base("DBContext") { } public DbSet Products { get; set; } } public class Product { ... 阅读全文