Get difference between two data-tables according to one column

寵の児 提交于 2019-12-10 11:09:11

问题


I have the following scenario:

Table A that has 50 records and Table B that has 2 records.

I need to define a new table, say TableDiff which should contain 48 records from Table A that doesn't exist in Table B

My problem is that Table A and Table B are not identical but I have the field rowId which exists in both tables that I need to compare using it.


回答1:


One way using Enumerable.Except and Enumerable.Join:

var aIDs = TableA.AsEnumerable().Select(r => r.Field<int>("RowID"));
var bIDs = TableB.AsEnumerable().Select(r => r.Field<int>("RowID"));
var diff = aIDs.Except(bIDs);
DataTable tblDiff = (from r in TableA.AsEnumerable()
                    join dId in diff on r.Field<int>("RowID") equals dId
                    select r).CopyToDataTable();

Here's the linq-to-objects "left-join"-approach:

DataTable tblDiff = (from rA in TableA.AsEnumerable()
                     join rB in TableB.AsEnumerable()
                     on rA.Field<int>("RowID") equals rB.Field<int>("RowID") into joinedRows
                     from ab in joinedRows.DefaultIfEmpty()
                     where ab == null
                     select rA).CopyToDataTable();



回答2:


    using System.Data.DataSetExtensions

    var tableAIds = tableA.AsEnumerable().Select(row => (int)row["rowId"]);
    var tableBIds = tableB.AsEnumerable().Select(row => (int)row["rowId"]);
    var resultantIds = tableAIds.Except(tableBIds);

now for creating datatable again

    DataTable diff =  from myRow in tableA.AsEnumerable()
                      join rIDS resultantIds in myRow.Field<int>("rowId") equals rIDS
                      select myRow).CopyToDataTable()


来源:https://stackoverflow.com/questions/17670668/get-difference-between-two-data-tables-according-to-one-column

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!