How do I get a distinct, ordered list of names from a DataTable using LINQ?

前端 未结 7 2065
谎友^
谎友^ 2020-12-09 14:40

I have a DataTable with a Name column. I want to generate a collection of the unique names ordered alphabetically. The following query ignores the

7条回答
  •  不思量自难忘°
    2020-12-09 15:06

    Try out the following:

    dataTable.Rows.Cast().select(dr => dr["Name"].ToString()).Distinct().OrderBy(name => name);
    

提交回复
热议问题