顧客オブジェクトのリストがあります (例: 顧客のリスト)
public class Customer
{
public int ID { get; set; }
public string City { get; set; }
public bool DidLive { get; set; }
}
私がする必要があるのは、この「顧客」コレクションをdictionary
次のように変換することです。
"Dictionary<int, Dictionary<string, bool>> " ここで、外側のキーは「ID」で、内側のキーは「City」です。
"GroupBy"
または"ToDictionary"
拡張メソッドを使用してこれを行うことはできます"IEnumerable<T>"
か?