Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下に示すようなデータテーブルがあります。
これらから、および列にstatecountyid基づいて最大値を取得する必要があります。sourcesourcenickname
statecountyid
source
sourcenickname
結果は次のようになります。
以下のコードを試してください。
var result = from row in tbl.AsEnumerable() group row by new {sourceKey = row["source"],sourcenicknamekey = row["sourcenickname"]} into g select new { maxSCIds = g.Max(x => x["statecountyid"]) };