实体框架connectionString与远程服务器(URL)

时间:2012-06-29 14:50:11

标签: wpf entity-framework connection-string sqlconnection

这是一个引用Entity Framework类库的WPF应用程序。在类库项目的App.config中,我有:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
  </entityFramework>
</configuration>

一切都很标准。我想要做的是添加一个连接字符串,使我能够通过URL连接到远程服务器到数据库。这有可能吗?

我尝试过这样的事情:

<connectionStrings>
    <add name="LanguageEntities" connectionString="metadata=res://*/LanguageModel.csdl|res://*/LanguageModel.ssdl|res://*/LanguageModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=http://www.myweb.net:667;User ID=Remote;Password=cleverstring;initial catalog=LanguageModel.LanguageEntities;integrated security=True;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
</connectionStrings>

但我的应用程序似乎默认为本地连接而没有给我一个错误消息。

感激地收到任何建议。

非常感谢!

0 个答案:

没有答案