我如何知道刷新我的 linq 查询?
我有一个基本的 Linq2Sql 实体网格(frmList)。我有一个单独的编辑表单(frmEdit)。 frmEdit 有自己的 DataContext (这似乎是推荐的方式)。我如何知道我的详细表单何时已保存更改?
我没有看到内置方法。我正在考虑在保存 datacontex 时在详细信息表单上引发一个事件,但不确定如何在 frmList 上使用此事件,并且我感觉这些事件已经在某处为我创建了?
谢谢 - 正如你可能知道的那样,我还没有完全了解事件。
I have a basic grid of Linq2Sql entities (frmList). I have a separate form for editing (frmEdit). frmEdit has its own DataContext (as that appears to be the recommended way). How can I tell when my detail form has saved changes?
I don't see a built-in method. I am considering raising an event on the detail form when I save the datacontex, but not sure how I consume this event on frmList, and I have a feeling these events are already created for me somewhere?
Thanks - as you can probably tell, I am not fully grokking events yet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜这些是简单的窗口窗体,然后正如您所说,引发如下事件:
在
db.SubmitChanges()
之后引发事件监听这些事件:
以相同的形式(frmList):
请正确如果我错了我! :)
Im guessing these are simple windows forms then as you said raise an event like the following:
raise event after the
db.SubmitChanges()
Listen to these events:
in this same form (frmList):
Please, correct me if im wrong! :)