用另一个更新数据表

时间:2018-08-10 13:32:23

标签: c# linq datatable

我有2个C#数据表,我也想更新的master(datatable1)有很多行,但是第二个只包含一些唯一的行。以下是我要实现的目标。enter image description here

我已经寻找一种方法来使用循环和LINQ进行此操作,但似乎没有一个更新ECAD列。

我尝试过这个。

foreach (DataRow row in dtARIAA.Rows)
{
      foreach (DataRow row1 in dtReport.Rows)
      {
            if (row["Ser"] == row1["Ser"] )
            {
                row1["ECAD"] = row["Date"];
            }
      }
}
dtReport.AcceptChanges();

1 个答案:

答案 0 :(得分:3)

据我从上面的模式可以看出,您只需要编写和执行此SQL。

Table1是您要更新日期的表,Table2是您有日期要更新的第二个表

update t1 set t1.ECAD  = [t2].[Date] from Table1 t1 
                         inner join Table2 t2  ON t2.Ser = t1.Ser

但是,如果您要使用内存中已有两个数据表,则可以使用

// Loop over the table with the unique Ser value and with the date to transfer
foreach (DataRow r in dtARIAA.Rows)
{
      // Get the rows in the destination table with the same "Ser" value
      DataRow[] destRows = dtReport.Select("Ser = " + r["Ser"]);

      // Now update the destination table rows with the Date value
      foreach (DataRow row1 in destRows)
          row1["ECAD"] = r["Date"];
}
dtReport.AcceptChanges();