gpt4 book ai didi

c# - Datatable.merge 像 join

转载 作者:行者123 更新时间:2023-11-30 14:25:31 24 4
gpt4 key购买 nike

我有两个像这样的 DataTables:

DataTable dt1 = new DataTable();
DataTable dt2 = new DataTable();

dt1:

enter image description here

dt2:

enter image description here

我需要合并两个 DataTables 并像这样设置为 GridView:

dt1.Merge(dt2, true, MissingSchemaAction.Add);
GridView1.DataSource = dt1;
GridView1.DataBind();

但是得到这样的输出:

enter image description here

我怎样才能像这样合并?

enter image description here

最佳答案

您需要添加以下行:

dt1.PrimaryKey = new[] { dt1.Columns[0], dt1.Columns[1] };
dt2.PrimaryKey = new[] { dt2.Columns[0], dt2.Columns[1] };

关于c# - Datatable.merge 像 join,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38047633/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com