edmx 连接字符串
我正在开发一个使用 edmx 进行数据访问的应用程序。
我意识到每个 edmx 文件在配置文件中都有自己的连接字符串。
有没有一种方法可以为所有 edmx 文件共享一个连接字符串?
I am developing an application that uses edmx for dataaccess.
I realized that each edmx file have its own connection string in the configuration file.
Is there a way to share one connection string for all the edmx files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不 - 没有。
并且有充分的理由。实体框架中的连接字符串包含的内容远多于常规连接字符串(例如数据源/数据库名称)。
它包含有关模型不同组件的重要信息,包括模型独有的 CSDL。
也许您可以解释一下,如果您计划在不同的 EDMX 之间共享连接字符串,那么为什么首先需要单独的 EDMX?
如果您正在寻找动态创建连接字符串的方法,请查看EntityConnectionStringBuilder。
No - there isn't.
And for good reason. The connection string in Entity Framework contains much more than regular connection strings (e.g data source / database name).
It contains crucial information about the different components of the model, including the CSDL, which is unique to the model.
Perhaps you could explain if you are planning to share a connection string between different EDMX's, then why do you need seperate EDMX's in the first place?
If your looking at a way to dynamically create a connection string then look at EntityConnectionStringBuilder.