我有一个客户对象列表(例如:列出客户)
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”,内键是“城市”。
这可以使用"GroupBy"
或"ToDictionary"
扩展方法来完成"IEnumerable<T>"
吗?