2

我正在使用 system.web.providers 为我的 Windows azure 项目中的 API 实现基本身份验证。这是我正在使用的默认连接字符串

 <connectionStrings>
<add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=aspnet-myProject.WebRole-20130117071735;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-myProject.WebRole-20130117071735.mdf;MultipleActiveResultSets=True" />    

在我的 AppData 文件夹中,正在创建 .mdf 文件。但是当我部署到我的 azure 帐户时,出现以下错误。

{"Message":"An error has occurred.","ExceptionMessage":"The system cannot find the file specified","ExceptionType":"System.ComponentModel.Win32Exception","StackTrace":null}

我知道该错误没有提供任何信息,但这仅发生在我已进行基本身份验证的 API 上,所以我猜问题是 .mdf 文件不是在云上创建的。

知道我部署到云时连接字符串应该是什么吗?

4

0 回答 0