我似乎无法绕过这一个。我需要使用LINQ通过内部Dictionary的值对Dictionary进行排序。有什么想法吗?
答案 0 :(得分:2)
你的意思是你想要所有的值,按内部值排序吗?
from outerPair in outer
from innerPair in outerPair.Value
orderby innerPair.Value
select new {
OuterKey = outerPair.Key,
InnerKey = innerPair.Key,
Value = innerPair.Value
};