I\'ve created an MVC 4 application using entity framework to read and write data to a database I am hosting on an Azure database. The Azure database was supposed to keep th
Use your database name instead of passing connection string. Check the database name in my example TestDB
public class ApplicationDbContext : IdentityDbContext
{
public ApplicationDbContext()
: base("TestDB", throwIfV1Schema: false)
{
}
public static ApplicationDbContext Create()
{
return new ApplicationDbContext();
}
}