MVC4建立DBContext的EF6数据

MVC4建立DBContext的EF6数据时
1.需要using System.Data.Entity;命名空间
2.此命名空间需要安装EntityFromwork.dll,此dll可以在项目——》管理NuGet程序包里联机搜索EntityFromwork并安装即可
3.建立类wenbingDBContext并继承DbContext,此时就需要上面的命名空间了
4.程序代码如下:
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Web;

namespace wenbing.Models
{
    public class  wenbingDBContext : DbContext
    {
        public wenbingDBContext()
            : base("name=at_advertisement")
        { }
        public DbSet accounts { get; set; }
    }
}
5,在2中安装EntityFromwork成功后会在项目根目录下的web.config里面出现以下xml文件,如下红色xml
 
   
   
 
 
   
   
   
   
   
 
 
   
 
 
   
   
     
       
       
       
       
       
       
     
   
 
 
   
   
   
     
     
     
     
     
     
   
 
 
   
     
       
     
   
   
     
   
 

你可能感兴趣的:(ASP.NET,MVC)