自跟踪实体扩展方法
当生成上下文时,我看到有一些扩展方法:AcceptChanges、MarkAsAdded、MarkAsDeleted、MarkAsModified。 我应该什么时候使用这些方法,因为它们仅在服务上可用?
When the context is generated i see there are some extension methods : AcceptChanges, MarkAsAdded, MarkAsDeleted, MarkAsModified.
When should i use these methods since they are available only on the service?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们也可以在客户端上使用 - 确保您已在文件开头包含它们的名称空间。如果没有,智能感知将不会提供建议,因为这些是扩展方法。
通常,您在客户端引用相同的项目,并且您也应该具有这些方法。当然,您在适当的时候使用它们。
They are available on the client as well - make sure you've included their namespace at the beginning of your file. If not, the intellisense will not offer a suggestion for it since these are extension methods.
Usually, you reference the same project on the client side, and you should have these methods as well. You use them when appropriate of course.