将数据视图排序到数据表
我有以下方法:
private DataTable getsortedtable(DataTable dt)
{
dt.DefaultView.Sort = "Name desc";
//I would need to return the datatable sorted.
}
我的问题是我无法更改此方法的返回类型,我必须返回一个 DataTable,但我想返回它已排序。
dt.DefaultView 是否有任何神奇的隐藏属性来返回已排序的 dt?
I have the following method:
private DataTable getsortedtable(DataTable dt)
{
dt.DefaultView.Sort = "Name desc";
//I would need to return the datatable sorted.
}
My issue is that I cannot change the return type of this method and I have to return a DataTable but i would like return it sorted.
Are there any magic hidden property of dt.DefaultView
to return the dt sorted?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这样做
do this