0

虽然我知道我可以通过 sql 连接 2 行,但我的程序没有使用它

 public DataTable joinTables (DataTable t1, DataTable t2)
    {
        DataTable joinTable = new DataTable();
        foreach (DataRow r1 in t1.Rows)
        {
            foreach (DataRow r2 in t2.Rows)
            {
                ///if (....)
                    joinTable.ImportRow(joinRows(r1,r2));
            }
        }
        return joinTable;
    }
    public DataRow joinRows (DataRow r1, DataRow r2)
    {
        DataRow joinRow = new DataRow();
        ///....
        return joinRow;
    }
4

3 回答 3

1

我认为您可能大大低估了您正在寻找的东西的复杂性,但这里有一些代码可以做到这一点,但它有一些我将讨论的主要假设。

public DataTable joinTables (DataTable t1, DataTable t2)
{
    DataTable t = new DataTable();
    AddColumns(t1, t);
    AddColumns(t2, t);

    for (int i = 0; i < t1.Rows; i++)
    {
        DataRow newRow = t.NewRow();

        for (int j = 0; j < t1.Columns.Count; j++)
        {
            SetMergedRowValue(t1.Rows[i], newRow, j);
            SetMergedRowValue(t2.Rows[i], newRow, j);
        }

        t.Rows.Add(newRow);
    }

    t.AcceptChanges();
}

private void AddColumns(DataTable source, DataTable target)
{
    foreach (DataColumn c in source.Columns)
    {
        target.Columns.Add(string.Format("{0}_{1}", source.TableName, c.ColumnName), c.DataType);
    }
}

private void SetMergedRowValue(DataRow source, DataRow target, int index)
{
    var columnName = string.Format("{0}_{1}", source.Table.TableName, source.Table.Columns[index]);
    target[columnName] = source[index];
}

假设

  1. 每个DataTable都有相同的行数。
  2. 这些DataTable对象中的行按照您希望它们按索引合并的顺序进行排序。

这些假设是主要的。简而言之,尽管这会产生预期的结果,但我不确定它是否真的是您正在寻找的东西,并且我不确定您是否真的确定您正在寻找什么。

于 2013-06-05T17:30:49.483 回答
1

下面是使用 LINQ 进行连接的两种方法的示例。

        var t1 = new DataTable();
        var t2 = new DataTable();
        t1.Columns.Add("id", typeof (Int32));
        t1.Columns.Add("data", typeof (String));
        t2.Columns.Add("id", typeof (Int32));
        t2.Columns.Add("data", typeof (Int32));

        t1.Rows.Add(new {id=1, data="John"});
        t1.Rows.Add(new {id = 2, data = "Mary"});

        t2.Rows.Add(new {id = 1, data = "100"});
        t2.Rows.Add(new {id = 2, data = "200"});


        var results = from x in t1.Select()
                      join y in t2.Select() on (Int32) x["id"] equals (Int32) y["id"]
                      select (new {id = x["id"], name = x["data"], number = y["data"]});

        var lamdaResults = t1.Select().Join(
            t2.Select(), x => x["id"], y => y["id"],
            (x, y) => new {id=x["id"], name=x["data"], number=y["data"]});
于 2013-06-05T17:25:00.863 回答
0

好吧,你们这些疯子,我想我已经破解了。

这就是我为我的问题想出的,做事的方式有点痛苦,但它把两个数据行作为一个,这就是我想要的。

找不到任何默认设置,但如果它存在,请告诉我。

private DataRow JoinDataRow(DataRow r1, DataRow r2)
{
    // Get table columns
    var r1Cols = r1.Table.Columns;
    var r2Cols = r2.Table.Columns;

    // Create datatable to base row from
    var tempDataTable = new DataTable();
    foreach (DataColumn col in r1Cols)
    {
        tempDataTable.Columns.Add(new DataColumn(col.ColumnName, col.DataType, col.Expression, col.ColumnMapping));
    }

    foreach (DataColumn col in r2Cols)
    {
        tempDataTable.Columns.Add(new DataColumn(col.ColumnName, col.DataType, col.Expression, col.ColumnMapping));
    }

    // Create new return row to be returned
    DataRow returnRow = tempDataTable.NewRow();

    // Fill data
    int count = 0;
    for (int r1Index = 0; r1Index < r1Cols.Count; r1Index ++)
    {
        returnRow[r1Index] = r1[r1Index];
        count++;
    }

    for (int r2Index = count; r2Index < r2Cols.Count + count; r2Index++)
    {
        returnRow[r2Index] = r2[r2Index -count];
    }

    // Return row
    return returnRow;
}

您可以如何使用它的一个实例可能是使用 LINQ 将两个单独的数据表连接在一起,并且您希望行相应地采取行动,请参见下面的示例:

var memberCompanyDetails = 
    (from DataRow member in members.Rows
    join DataRow company in companies.Rows on member["company"] equals company["company"]
    select JoinDataRow(member, company)).AsEnumerable().CopyToDataTable();
于 2019-09-11T09:34:31.560 回答