如果记录中的列值不同,则在 DataView 中添加新记录?

发布于 2024-11-05 04:02:05 字数 290 浏览 0 评论 0原文

我的代码隐藏页面中有一个 DataView : DataView _dvListing = _dt.DefaultView; 我想要做的是循环遍历视图/表,并检查当前记录的列值与上一条记录中同一列中的值。如果不同,我想在当前记录之后添加新记录。一个示例是:

当前记录 col X =“Team B”,先前记录 col X =“Team A”,因此 INSERT New Rec with Col X =“Team B”

我需要在 FOR 循环中使用数据行视图吗?

提前谢谢

I have a DataView in my code-behind page : DataView _dvListing = _dt.DefaultView;
What I want to do is loop through the view/table and check the column value of the current record with the value in the same column in the previous record. If it is different I want to add a new record after the current record. An example will be:

Current Rec col X = "Team B", Previous Rec col X = "Team A", therefore INSERT New Rec with Col X = "Team B"

Would I need to use datarow view in a FOR loop?

Thx in advance

Mo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

撩动你心 2024-11-12 04:02:05

我建议改用 select 语句。

I will suggest to use select statement instead.

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