标签:
1、在使用DataTable.select进行排序时,直接写DataRow[] drr = dt.Select("POSTPARID=‘" + node.Value.ToString() + "‘ order by DISPINDEX ASC");
这样写会报如题错误:“order”运算符后缺少操作数。
改成DataRow[] drr = dt.Select("POSTPARID=‘" + node.Value.ToString() + "‘", " DISPINDEX ASC")即可
标签:
原文地址:http://www.cnblogs.com/cheng2015/p/5035357.html