在使用DataTable上的Select时,我似乎无法弄清楚如何返回所有行。
到目前为止我的代码:
foreach (DataRow r in data.Select("Sort != null", "Sort"))
{ //process }
我收到以下错误:
无法解释令牌'!'
排序 列的类型为 Guid ,用于以随机顺序返回行。
答案 0 :(得分:3)
试试这个......
foreach (DataRow r in data.Select("Sort IS NOT NULL", "Sort"))
{ //process }
答案 1 :(得分:1)
您也可以尝试:
foreach (DataRow r in data.Select("Sort <> null", "Sort"))
{ //process }
答案 2 :(得分:1)
怎么样
foreach (DataRow r in data.Select())
{ //process }
请参见https://docs.microsoft.com/en-us/dotnet/api/system.data.datatable.select?view=netframework-4.8