使用 LINQ GetChangeSet() 向用户显示发生了什么

发布于 2024-08-30 01:31:21 字数 213 浏览 2 评论 0原文

假设我有 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 技术交流群。

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

发布评论

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

评论(1

∞琼窗梦回ˉ 2024-09-06 01:31:21

AFAIK 是在您调用提交更改之前;提交更改使用 GetChangeSet 信息来确定要生成哪些 SQL 等。

AFAIK it's before you call submit changes; submit changes uses the GetChangeSet information to determine what SQL to generate etc.

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