我如何将IDictionary<Guid,string>转换为IEnumerable<SelectListItem>
我想使用字符串作为SelectListItem

最佳答案

如果要使用guid作为值,则可以使用

dictionary.Select(x => new SelectListItem  { Text = x.Value, Value = x.Key })

关于c# - 将IDictionary <Guid,string>转换为IEnumerable <SelectListItem>,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21630446/

10-11 02:05