Last active
August 28, 2017 16:55
-
-
Save fischgeek/d70c79d6db6e87e7d75281f0a428b834 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace PROJECTNAME.Migrations | |
{ | |
using System; | |
using System.Data.Entity; | |
using System.Data.Entity.Migrations; | |
using System.Linq; | |
public sealed class Configuration : DbMigrationsConfiguration<PROJECTNAME.CLASSNAME> | |
{ | |
public Configuration() | |
{ | |
AutomaticMigrationsEnabled = true; | |
AutomaticMigrationDataLossAllowed = true; | |
} | |
protected override void Seed(PROJECTNAME.CLASSNAME context) | |
{ | |
// This method will be called after migrating to the latest version. | |
// You can use the DbSet<T>.AddOrUpdate() helper extension method | |
// to avoid creating duplicate seed data. E.g. | |
// | |
// context.People.AddOrUpdate( | |
// p => p.FullName, | |
// new Person { FullName = "Andrew Peters" }, | |
// new Person { FullName = "Brice Lambson" }, | |
// new Person { FullName = "Rowan Miller" } | |
// ); | |
// | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment