本文介绍了如何使用EntityFramework进行种子数据首先进行迁移的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用这个nuGet软件包的Beta 1版本,数据库已经被创建了,我需要知道是否有办法通过迁移来填充我的表。 Thanxs

解决方案

介绍文章显示如何种子数据



  myContext.AddOrUpdate(c => c.FullName,
new客户{FullName =Andrew Peters,CustomerNumber = 123},
);


Hi I'm using the Beta 1 version of this nuGet package, the database is allready created and I need to know if there is a way to populate my tables through migrations. Thanxs

解决方案

The intro post shows how to seed datahttp://blogs.msdn.com/b/adonet/archive/2011/11/29/code-first-migrations-beta-1-no-magic-walkthrough.aspx

myContext.AddOrUpdate(c => c.FullName,
  new Customer { FullName = "Andrew Peters", CustomerNumber = 123 },
);

这篇关于如何使用EntityFramework进行种子数据首先进行迁移的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 03:02