Skip to content

Instantly share code, notes, and snippets.

View caco0516's full-sized avatar

Carlos Castillo Oporta caco0516

View GitHub Profile
@caco0516
caco0516 / ChangeName.cs
Created May 12, 2016 20:26
Change tables names of a new Web App Project in Visual Studio
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext()
: base("DefaultConnection", throwIfV1Schema: false)
{
}
public static ApplicationDbContext Create()
{
return new ApplicationDbContext();