Azure TableServiceContext 应该是一次性的吗?
我开始在一个新项目中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一次性适用于对象有权访问非托管资源的情况。但通常使用一次性物品来强制执行某些清理/操作。我假设 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.