Azure に公開されている非常に単純な ASP.NET MVC 4 アプリケーションがあります。公開するとき、Visual Studio でDefaultConnection
を Azure SQL データベースへの接続文字列に置き換えます。クラスがあり、それを特定の役割に制限すると、これはうまく機能します。
//[RequireHttps]
[InitializeSimpleMembership]
[Authorize(Roles = "canEditThings")]
public class ThingController : Controller
{
// <stuff goes here>
}
しかし、RequireHttps
属性のコメントを外すと、突然このエラーに直面します:
SQLExpress database file auto-creation error:
The connection string specifies a local Sql Server Express instance
using a database location within the application's App_Data directory.
これは最近起こり始めたばかりです。数週間前までは、これはすべて機能していました。
何か案は?