请问如何实现对datatable.select实现复杂排序
比如datatable.select("列1>=1 and 列2>=1","列1/列2");谢谢! --------------------编程问答-------------------- datatable.select("列1>=1 and 列2>=1","列1/列2").OrderBy(x => x[列1].ToString).ThenBy(x => x[列2].ToString());
补充:.NET技术 , C#
补充:.NET技术 , C#