Need help for a complex linq query

Posted by Jipy on Stack Overflow See other posts from Stack Overflow or by Jipy
Published on 2010-04-27T19:52:22Z Indexed on 2010/04/28 3:13 UTC
Read the original article Hit count: 364

Filed under:
|
|
|

Ok so I've got a DataTable here's the schema

        DataTable dt = new DataTable();
        dt.Columns.Add("word", typeof(string));
        dt.Columns.Add("pronunciation", typeof(string));

The table is filled already and I'm trying to make a linq query so that i can output to the console or anywhere something like :

   Pronunciation : akses9~R => (list of words)

I want to output the pronunciations the most common and all the words that use it.

© Stack Overflow or respective owner

Related posts about c#

Related posts about LINQ