使用 LINQ GetChangeSet() 向用户显示发生了什么
假设我有 L2S 更新,我想向用户显示更改的内容。 GetChangeSet() 在哪里填充?在我分配值之后立即还是在 context.SubmitChanges()
之后?
如果是第二个;理论上,我可以将返回类型更改为IList
,然后返回return context.GetChangeSet().Updates;
?
Say I have a L2S Update and I would like to display what changed to the user. Where does GetChangeSet() get populated? Immediately after I assign values or after context.SubmitChanges()
?
If the second; I could, theoretically, change the return type to IList
and then return return context.GetChangeSet().Updates;
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK 是在您调用提交更改之前;提交更改使用 GetChangeSet 信息来确定要生成哪些 SQL 等。
AFAIK it's before you call submit changes; submit changes uses the GetChangeSet information to determine what SQL to generate etc.