在本地使用 SQL Server CE 并在生产实体框架代码优先上使用 SQL Server 2008?
我首先使用 EF Code 来生成我的模型。我已将 SQL Server Compact Edition 添加到我的项目中,并将其用作本地数据库。
我想配置 DataContext,以便当我推送到生产环境(基于计算机名称)时,它会从 Web Config 中的连接字符串中提取并使用 SQL Server 2008 DB。
做到这一点最简单的方法是什么?基本上我的问题是我需要在什么时候添加条件,以便在部署它时它会拉入连接字符串并正常工作。
这甚至是推荐的方法吗?
I am using EF Code first to generate my models. I have added SQL Server Compact Edition to my project and am using that as a DB locally.
I want to configure the DataContext so that when I push to Production (based on the machine name) it instead would pull from a connection string in the Web Config and use a SQL Server 2008 DB.
What is the easiest way to do this? Basically my question is at what point do I need to add the conditional so that when it is deployed it pulls in the connection string and just works.
Is this even a recommended approach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此讨论采用一种方法,即在同一配置文件中拥有多个设置。
此处建议使用多个配置文件,每个环境一个,或者使用 MSBuild 生成选择一个配置文件。
使用
#IF DEBUG
是另一种选择,但存在风险,因为开发人员决定测试发布版本并忘记他们正在针对实时系统运行!This discussion has one approach where you have multiple settings in the same config file.
Here the suggestion is to use multiple config files, one for each environment or use MSBuild to produce select a config file.
using
#IF DEBUG
is another option but risky where a developer decides to test a release version and forgets they are running against a live system!我的第一个想法是,当您使用不同的“解决方案配置”(调试/发布/等)部署 App.Config 时,您只需要提供不同的 ConnectionString
,甚至可以通过 MSBuild 自动化此操作。
My first thought is that you only need to deliver a different ConnectionString when you deploy your App.Config
Using different 'Solution Configurations' (Debug/Release/ etc.) there are possibilities to even automate this via with MSBuild.