我有一个返回<string,string>
键值对列表的 linq 语句。问题是键中的所有值都需要替换。有没有办法在 linq 的选择中进行替换而不必遍历整个列表?
var pagesWithControl = from page in sitefinityPageDictionary
from control in cmsManager.GetPage(page.Value).Controls
where control.TypeName == controlType
select page; // replace "~" with "localhost"