在特定行插入数据行值

本文关键字:数据 插入 | 更新日期: 2023-09-27 18:25:34

我想在数据表的特定行中插入数据行值。我有一个带值的数据表,然后我想用c#覆盖特定的行值。

我的部分代码id在这里:

   for (int j = 0; j < DT.Rows.Count; j++)
            {
                row = DT2.NewRow();
                row["Employee ID"] = Convert.ToString(DS.Rows[j]["fldempid"]);
                row["Employee Name"] = Convert.ToString(DS.Rows[j]["fldempname"]);
                string leavehstry = Convert.ToString(DS.Rows[j]["fldleavehistory"]);
                string[] textarray1 = leavehstry.Split('-');
                char[] delimiterChars1 = { ':' };
                for (int i = 1; i <= textarray1.Length - 1; i++)
                {
                    string[] words = textarray1[i - 1].Split(delimiterChars1);
                    string value = words[0].ToString();
                    string value1 = words[1].ToString();
                    row[value] = value1;
                    ivalue = i;
                }
                //DT2.Rows[j].Delete(); //I want to insert (or) overwrite the row value at j th position. 
                //DT2.Rows.Add(row);
                //DT2.Rows[j].AcceptChanges();

            }

请帮我插入。

在特定行插入数据行值

您可以使用InsertAt方法在指定索引位置的DataTable中插入DataRow。

你可以这样做来代替你的三行注释:

DT2.InsertAt(row, j);

如果EmployerID是唯一值,则将DataColumn"Employer ID"值与Employers ID进行比较,并使用for循环根据需要分配数据行值。