DataTable
条件に応じて合計または平均を使用して、リスト内の sをマージしたいと考えています。例えば:
private DataTable getData(List<DataTable> datas, string[] KeyColumnNames, string valueCol)
{
List<DataTable> dataTables = datas;
//if datas has 3 dataTables in it : dt1, dt2, dt3
// then I want to create another dataTable dtAll which will have the sum of
// valueCol of all three datatables for the row which will be conditioned using
// KeyColumnNames (can be multiple Primary keys)
return dataTable;
}
すべてのデータテーブルは、スキーマは似ていますがデータセンターが異なるテーブルであるため、まったく同じであるが異なる値であると考えてください。ありがとう。