Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试对数据表进行排序。但它不起作用。
arr[0] = "name"; arr[1] = "DESC"; myDataSet.Tables["table1"].DefaultView.Sort = arr[0] + " " + arr[1];
在这里,myDataSet指的是我用于报告查看器的数据集。
myDataSet
我错过了什么吗?还有其他方法吗?
请记住,您必须使用默认视图作为查看器的新数据源。
使用 defaultView 属性调用绑定方法,然后调用 ToTable()