在本地使用 SQL Server CE 并在生产实体框架代码优先上使用 SQL Server 2008?

发布于 2024-11-08 20:37:26 字数 263 浏览 0 评论 0原文

我首先使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

家住魔仙堡 2024-11-15 20:37:26

讨论采用一种方法,即在同一配置文件中拥有多个设置。
此处建议使用多个配置文件,每个环境一个,或者使用 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!

黄昏下泛黄的笔记 2024-11-15 20:37:26

我的第一个想法是,当您使用不同的“解决方案配置”(调试/发布/等)部署 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文