2013年3月7日
摘要: 之前一篇是关于Entityframework的开发模式CodeFirst(另外两种模式分别为ModelFirst和DataBaseFirst)的数据迁移问题的讨论。这个问题从我们开始选择entityframework作为我们团队的数据库持久化层框架时就一直困扰着我们。 一开始在寻找如何可以让CodeFirst能够每次在实体模型发生改变时,自动改变数据库表结构,最后通过在DbContext初始化构造时加上这句话实现了功能Database.SetInitializer(new DropCreateDatabaseIfModelChanges<TContext>()); 虽然每次模型更改 阅读全文
posted @ 2013-03-07 19:32 行动大于一切 阅读(1616) 评论(2) 推荐(1) 编辑
  2013年2月28日
摘要: This walkthrough will provide an overview Code First Migrations in Entity Framework. You can either complete the entire walkthrough or skip to the topic you are interested in. The following topics are covered:Enabling MigrationsGenerating & Running MigrationsCustomizing MigrationsData Motion &am 阅读全文
posted @ 2013-02-28 10:26 行动大于一切 阅读(1145) 评论(1) 推荐(0) 编辑