首页 > 代码库 > Entity framework DB first---(1)
Entity framework DB first---(1)
Db first 系列-1
1) 创建Db 文件,并指定connectionstring name:
public class Db : DbContext { public Db() : base("prodinner") { } public DbSet<Country> Countries { get; set; } public DbSet<Chef> Chefs { get; set; } public DbSet<Meal> Meals { get; set; } public DbSet<Dinner> Dinners { get; set; } public DbSet<User> Users { get; set; } public DbSet<Role> Roles { get; set; } public DbSet<Feedback> Feedbacks { get; set; } }
2) 调用 Db class in your controller
public ActionResult Index() { var result = from d in dbContext.Dinners select d; return View(result); }
3) 在web.config 中添加Connectionstring
<add name="prodinner" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=DB name;Integrated Security=True" providerName="System.Data.SqlClient" />
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。