我正在尝试连接到我的共享托管数据库。
他们给了我一个例子:
Data Source=KezBlu.db.10971085.hostedresource.com; Initial Catalog=KezBlu; User ID=KezBlu; Password='your password';
我从中制作:
<connectionStrings>
<add name="LibKezberProjectManager.Properties.Settings.KezberPMDBConnectionString" connectionString=" Server=****.db.10971085.hostedresource.com; Database=KezBlu; User ID=****; Password=mypassword; Trusted_Connection=False" providerName="System.Data.SqlClient" />
</connectionStrings>
但 Linq 似乎无法连接到它。
我不确定可能出了什么问题。
当我使用本地 SQLExpress 时,它工作正常...
谢谢