当前位置:编程学习 > C#/ASP.NET >>

c#中一个datagridview能否绑定到多个datatable

c#中一个datagridview能否绑定到多个datatable
形如:
A表
id     name
1         1
2         2

B表
id       name
3        3
4        4

希望绑定后datagridview显示如下
id    name
1       1
2       2
3       3
4       4
--------------------编程问答-------------------- --------------------编程问答-------------------- --------------------编程问答-------------------- 好像不可以

但是可以变通:
SQL:select id, name from A union all select id, name from B -----把2个表的数据保存在一个DataTable中

或者不用datagridview.DataSource绑定
用Add方法一天一天的添加 --------------------编程问答-------------------- 好像不可以

但是可以变通:
SQL:select id, name from A union all select id, name from B -----把2个表的数据保存在一个DataTable中

或者不用datagridview.DataSource绑定
用Add方法一天一天的添加 --------------------编程问答-------------------- 发错地方了 --------------------编程问答-------------------- --------------------编程问答-------------------- vb 好大大大大大大大大大大大大大大大大大大大大大大大大 --------------------编程问答-------------------- dataset不是可以绑定多个datatable吗?
补充:.NET技术 ,  其他语言
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,