DataTable 中的 DataRow 状态存在问题
我对使用 DataTable 有一个非常奇怪的要求。 我有一个包含一些列的数据表。 每当数据表中的任何 DataRow 发生任何更改时,Nwo; 然后 DataRow 的状态设置为已修改。 那没问题。 但对于一个特殊的专栏,我不希望出现这种行为。 我希望该特定列的任何行中的任何更改都不应更改数据行的状态。 请帮我解决这个问题。
I have a very strange requirement using DataTable. I have a datatable with some columns. Nwo whenever there is any change in any of the DataRow in the datatable; then the state of DataRow is set to modified. That is OK. But for one exceptional column I don't want this behavior. I want that any change in any row for this particular column should not change the state of datarow. Please help me to solve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不是这里的专家,但我认为您不能禁止触发该事件。
但是您可以更改处理此事件的方式。
类似于“如果修改的单元格位于 XXX 列,则离开;否则继续事件处理”。
希望能帮助到你,
I am not an expert here however I don't think you can forbid the event to be triggered.
However you can change the way you handle this event.
Something like "if the modified cell is on the column XXX then leave; else continue the event handling".
hope it helps,