Visual Studio/C# 实体数据模型

发布于 2024-10-03 09:25:04 字数 160 浏览 4 评论 0原文

我在 Visual Studio 中为 SQL 数据库设置了 EDM。我在配置文件中设置了连接字符串,但我的问题是如何测试数据库是否正确连接。

如果我在配置文件中放置一个损坏的数据库连接字符串,程序仍然会启动并进行查询,然后它会抛出异常。如何确定字符串是否已成功连接?

谢谢

I setup a EDM for a SQL database in visual studio. I set the connection string in a configuration file but my question is how I can test if the database was properly connected.

If I put a broken connection string for the database in the config file, the program still boots and makes its way to the queries, then it throws an exception. How can I ensure that the string has made a successful connection or not?

Thanks

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

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

发布评论

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

评论(1

绝對不後悔。 2024-10-10 09:25:04

调用检查数据库是否存在

using (var ctx = new BonsaiEntities())
{
   if ( ctx.DatabaseExists() ) {
   };
}

Make a call to check if the DataBase exists

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