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技术 , 其他语言