How to make Entity Framework Code First use the SQL Azure DB?
You should pass the connection string name to the base constructor of your BlogContext
like this
public BlogContext()
: base("TestDBContext")
{
}
http://msdn.microsoft.com/en-us/library/gg679467(v=vs.103).aspx