gpt4 book ai didi

C# DataTable删除行

转载 作者:太空狗 更新时间:2023-10-29 23:59:49 27 4
gpt4 key购买 nike

我有 DataTable participantAccounts,它没有连接到任何数据库或其他东西。

如何从中删除一行?

这是行不通的:

for (int i = participantAccounts.Rows.Count - 1; i >= 0; i--) {
DataRow dr= participantAccounts.Rows[i];
if (Equals(dr["sellrMembId"].ToString(), itemId))
participantAccounts.Rows.RemoveAt(i);
}

participantAccounts.AcceptChanges();

它表现得好像一切都很好,但行仍然保留在 DataTable 中。我也试过 dr.Delete() 但都不起作用。当我尝试 participantAccounts.Rows.Remove(dr) 时出现异常 The given DataRow is not in the current DataRowCollection.

我做错了什么?

最佳答案

if (participantAccounts.Rows.Contains(itemId))
{
DataRow foundRow = participantAccounts.Rows.Find(itemId);
participantAccounts.Rows.Remove(foundRow);

}

关于C# DataTable删除行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27504693/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com