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

前端 未结 7 2089
谎友^
谎友^ 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 14:46

    var sortedTable = (from results in resultTable.AsEnumerable()
    select (string)results[attributeList]).Distinct().OrderBy(name => name);
    

提交回复
热议问题