将 ASP.NET 站点直接连接到新数据库
将我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将 web.config 中的连接字符串更改为新服务器或您可能存储它的位置。
change your connection string in web.config to the new server, or where ever you may store it.
您可以更改正在使用的连接字符串,或者在创建模型实例时使用此构造函数重载:
You can change the Connection String that you are using, or when you create your model instance use this ctor overload:
更改 web.config 或 app.config 文件中的连接。
如何:定义连接字符串
Change the connection in your web.config or app.config file.
How to: Define the Connection String