ADO.net,检查 ObjectContext 是否可写

发布于 2024-08-26 16:57:15 字数 118 浏览 8 评论 0原文

我在 ASP.NET MVC 项目中有一个嵌入式数据库。如果我尝试写入该文件,有时会收到写入失败异常,因为 SQL Server 无法写入该文件。如何检查 ObjectContext(如果其可写)而不实际向数据库写入内容?

I have an embedded database in an asp.net mvc project. If I try to write to the file, I sometimes get a write failed exception because the SQL Server can't write to the file. How can I check an ObjectContext, if its writeable, without actually writing something to the database?

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

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

发布评论

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

评论(1

人生戏 2024-09-02 16:57:15

您可以直接对数据库执行类似的操作以查明它是否是只读的:

SELECT DATABASEPROPERTYEX('DatabaseName','Updateability')

为此,您可以使用:

  • EF 4.0 => ObjectContext.ExecuteStoreCommand(..)
  • EF 3.5 => (ObjectContext.Connection as EntityConnection).StoreConnection as SqlConnection 获取底层数据库连接,然后创建一个SqlCommand。

一旦你弄清楚了这一点,我可能会把它变成一个扩展方法,这样你就可以做这样的事情:

if (ctx.ReadOnly()) ...

希望这对

亚历克斯有帮助

You could execute something like this directly against the database to find out it if is read-only or not:

SELECT DATABASEPROPERTYEX('DatabaseName','Updateability')

To do that you would use:

  • EF 4.0 => ObjectContext.ExecuteStoreCommand(..)
  • EF 3.5 => (ObjectContext.Connection as EntityConnection).StoreConnection as SqlConnection to get to the underlying database connection, and then create a SqlCommand.

Once you've figured this out, I'd probably turn this into an Extension method so you could do something like this:

if (ctx.ReadOnly()) ...

Hope this helps

Alex

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