重複の可能性:
linq-to-sql group by with count and custom object model
グループ化してカウントするlinq-to-sqlクエリがあり、結果は辞書に保存されます。ディクショナリをオブジェクトモデルのプロパティにマップしたいと思います。オブジェクトモデルは次のようになります。
public class MyCountModel()
{
int CountSomeByte1 { get; set; }
int CountSomeByte2 { get; set; }
int CountSomeByte3 { get; set; }
int CountSomeByte4 { get; set; }
int CountSomeByte5 { get; set; }
int CountSomeByte6 { get; set; }
}
クエリが次のように終了するように辞書をマップしたいと思います。
var TheQuery = MyDC.SomeTable
.Where(...)
.GroupBy(...)
.ToDictionary(x => x.Key, x=> x.Count()
.Select(m => new MyCountModel()
{
CountSomeByte1 = ..., // the value where Key is 1
CountSomeByte2 = ...., // the value where Key is 2
....
CountSomeByte6 = .... // the value where Key is 6
});
どうすればこのようなものを書くことができますか?あなたの提案をありがとう。