我正在使用 asp.net mvc 3 web 角色在 Windows azure 上工作。我正在尝试使用 ADO.NET Entity Framework 列出表中的所有记录。我已经使用以下连接字符串来绑定模型。
<add name="CalMedEntities" connectionString="metadata=res://*/Models.CalMedModel.csdl|res://*/Models.CalMedModel.ssdl|res://*/Models.CalMedModel.msl;provider=System.Data.SqlClient;provider connection string="data source=STELLENT-PC.database.windows.net;initial catalog=CalMed;persist security info=True;user id=sa;password=#stellent10;multipleactiveresultsets=True;Encrypt=True;erverCertificate=False;App=EntityFramework"" providerName="System.Data.EntityClient" />
当我在本地运行我的项目时,它在 Windows azure 模拟器中工作正常。但我收到一个错误
基础提供程序在打开时失败。
将我的项目发布到 Windows azure 门户后。请指导我。