简化 EF 连接字符串?
<add name="DemoModelContainer" connectionString="metadata=res://*/DataModel.Demo.csdl|res://*/DataModel.Demo.ssdl|res://*/DataModel.Demo.msl;provider=System.Data.SqlClient;provider connection string="Data Source=.\sqlexpress;Initial Catalog=DemoDev;Integrated Security=True;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient" />
这只是我在项目中使用EF4时的一个连接字符串。长的真可笑。有什么办法可以简化这个吗?使其简短而简单。
<add name="DemoModelContainer" connectionString="metadata=res://*/DataModel.Demo.csdl|res://*/DataModel.Demo.ssdl|res://*/DataModel.Demo.msl;provider=System.Data.SqlClient;provider connection string="Data Source=.\sqlexpress;Initial Catalog=DemoDev;Integrated Security=True;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient" />
This is just a connection string when I use EF4 in the project. It's ridiculous long. Is there any way to simplify this? To make it short and simple.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单的答案是否定的。这是使用 EDMX 文件时 EF 提供程序所需的连接字符串。您可以手动构建连接字符串,但它必须具有所有这些组件。
Simple answer is no. This is connection string needed for EF provider when using EDMX file. You can buil connection string manually but it must have all these components.
您可以使用 just:
来省略 csdl、ssdl、msl 名称的指定。
You can use just:
to omit specifying of csdl, ssdl, msl names.