Azure TableServiceContext 应该是一次性的吗?

发布于 2024-11-16 22:53:46 字数 181 浏览 5 评论 0原文

我开始在一个新项目中使用 Azure 表。

TableServiceContext 的奇怪之处让我震惊。

它似乎与 LinqToSql 上下文对象类似,因为它跟踪对象等的更改。 但 TableServiceContext 不是一次性的。

TableServiceContext 应该是一次性的吗?

I'm Starting out with Azure Tables in a new project.

I'm struck by the oddities with the TableServiceContext.

It appears to be simular to the LinqToSql context object, in that it tracks changes to objects etc.
But the TableServiceContext isn't disposable.

Should the TableServiceContext be disposable?

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

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

发布评论

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

评论(1

小苏打饼 2024-11-23 22:53:46

一次性适用于对象有权访问非托管资源的情况。但通常使用一次性物品来强制执行某些清理/操作。我假设 LinqToSql 上下文可能会保持与数据库的连接打开,这意味着它应该是一次性的,以便可以关闭连接。 TableServiceContext 不会保持连接打开,因为它使用 REST 协议进行更改。上下文跟踪的对象只是为了能够发送正确的 Etag 进行更新等。所以不,我认为 TableServiceContext 不需要是一次性的。

Disposable is intended for when an object have access to a non managed resource. But it is common to use disposable to force certain cleanup/actions. I assume LinqToSql contexts may keep a connection to the database open which means it should be disposable so that connection can be closed. The TableServiceContext does not keep a connection open since it uses a REST protocol to do changes. The objects the context keep track of is just to be able to send the correct Etags for updates etc. So no, I don't think the TableServiceContext needs to be disposable.

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