将 ASP.NET 站点直接连接到新数据库

发布于 2024-12-12 06:11:00 字数 62 浏览 0 评论 0原文

将我的 ASP.NET 网站(实体框架)重定向到新数据库的最简单方法是什么?数据库是相同的,只是在新服务器上。

What is the easiest way to redirect my asp.net website (entity framework) to a new database. The database is identical, its just on a new server..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

回梦 2024-12-19 06:11:00

将 web.config 中的连接字符串更改为新服务器或您可能存储它的位置。

change your connection string in web.config to the new server, or where ever you may store it.

不气馁 2024-12-19 06:11:00

您可以更改正在使用的连接字符串,或者在创建模型实例时使用此构造函数重载:

public EntitiesContext()
            :base("newConnectionString")
        {}

You can change the Connection String that you are using, or when you create your model instance use this ctor overload:

public EntitiesContext()
            :base("newConnectionString")
        {}
岛徒 2024-12-19 06:11:00

更改 web.config 或 app.config 文件中的连接。

如何:定义连接字符串

Change the connection in your web.config or app.config file.

How to: Define the Connection String

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