Add project files.

This commit is contained in:
2019-11-10 20:26:59 +01:00
parent 39dc8d2cc9
commit 387bb252d1
23 changed files with 889 additions and 0 deletions

View File

@ -0,0 +1,23 @@
namespace CodeFirstExistingDatabase.Migrations
{
using System;
using System.Data.Entity;
using System.Data.Entity.Migrations;
using System.Linq;
internal sealed class Configuration : DbMigrationsConfiguration<CodeFirstExistingDatabase.PlutoContext>
{
public Configuration()
{
AutomaticMigrationsEnabled = false;
}
protected override void Seed(CodeFirstExistingDatabase.PlutoContext 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.
}
}
}