DataSet合并两个集合

set1与set2合并生成新的集合
DataSet set = set1.unionAll(set2)

合并不重复的集合,根据ID,CODE判断是否重复
DataSet set = set1.union(set2,"ID","CODE")

最近更新 搜索 提交