0
這是我的實體集合。以Linq語句輸出字典輸出
Dictionary<string, List<Dictionary<string, string>>> EntityCollection = new Dictionary<string, List<Dictionary<string, string>>>();
當我在EntityCollection
獲得價值,我想對其進行過濾。
var filtered = from entity in EntityCollection
where entity.Key == entityId
select entity.Value;
現在我只想要。 所以我創建了一個變量:
List<Dictionary<string, string>> entityDetails = new List<Dictionary<string, string>>();
我怎麼能投filtered
到entityDetails
?
我試過filtered.ToList<Dictionary<string, string>>
,但沒有成功。