Connection string error using membership provider from WCF service

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-06 05:46:20

That connection string includes some Entity Framework specific data. Try instead just the "provider connection string" embedded within it:

 <add name="MajangoEntities" connectionString="data source=tcp:sql2k298.discountasp.net;initial catalog=SQL2008R2_835021_myddb;user id=SQL2008R2_835021_mydb_user;password=mypassword;multipleactiveresultsets=True;App=EntityFramework">

The rest of the data in there (the metadata, etc.) is just confusing SQL Server.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!