Skip to content

Instantly share code, notes, and snippets.

@corespider
Created August 7, 2020 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corespider/e38ee571f57e0504acfcc479b02b661e to your computer and use it in GitHub Desktop.
Save corespider/e38ee571f57e0504acfcc479b02b661e to your computer and use it in GitHub Desktop.
ASP .NET Web API CRUD operation using Entity Framework-Configuration
internal sealed class Configuration : DbMigrationsConfiguration<CustomerAPI.Models.CustomerAPIContext>
{
public Configuration()
{
AutomaticMigrationsEnabled = false;
}
protected override void Seed(CustomerAPI.Models.CustomerAPIContext 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