运行环境:VS2012,添加的EntityFramework为6.0.2
版本不用太关心,只要知道原理就行了:
基本代码就这几行:
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Blog bg = new Blog { BlogId = 1, BlogName = "ddd" };
BlogContext db = new BlogContext();
db.BlogList.Add(bg);
db.SaveChanges();
}
}
public class Blog
{
public int BlogId{get;set;}
public string BlogName{get;set;}
}
public class BlogContext : System.Data.Entity.DbContext
{
public System.Data.Entity.DbSet<Blog> BlogList { get; set; }
}
}
class Program
{
static void Main(string[] args)
{
Blog bg = new Blog { BlogId = 1, BlogName = "ddd" };
BlogContext db = new BlogContext();
db.BlogList.Add(bg);
db.SaveChanges();
Console.WriteLine(db.BlogList.Count());//这句主要是看我们有没有加成功。
Console.ReadLine();}
}
public class Blog
{
public int BlogId{get;set;}
public string BlogName{get;set;}
}
public class BlogContext : System.Data.Entity.DbContext
{
public System.Data.Entity.DbSet<Blog> BlogList { get; set; }
}
}
通过Nuget安装EntityFramework之后App.config和packages就没变动过,都是默认的。
我在这里想说的是,添加的数据库哪里去了?
呵呵,先前都听说那个用EFCodeFirst数据库不好管理,这个还真是。找了好久才找到: http://msdn.microsoft.com/zh-cn/data/jj193542