Używam EF5 z MVC4. Problem polega na tym, że mam duże dane w moim DB, które już zaimportowałem ze starszego DB. Chcę załadować seed danych po zmianie modelu. Moje pytanie brzmi: jak mogę wysiać duże ilości danych, które są już w moim DB?Kod EF 5 Pierwsza migracja zbiorczego SQL Data Seeding
internal sealed class Configuration : MigrationsConfiguration<VoiceLab.Models.EFDataContext>
{
public Configuration()
{
AutomaticMigrationsEnabled = true;
}
protected override void Seed(VoiceLab.Models.EFDataContext context)
{
//what to do here to seed thousands or records that are already in db
}
}
Dzięki,
myślę, że to jest droga Bilal mówił o: http://edspencer.me.uk/2012/10/30/seed-data-from-sql -scripts-using-entity-framework-migrations-ef-4-3 / – Rahatur