我具有以下LINQ,并且我需要将结果作为列表返回,但收到错误:
无法将类型
System.Collections.Generic.IEnumerable<<anonymous type: string emis>>
隐式转换为System.Collections.Generic.List<string>
。存在显式转换(您是否缺少演员表?)
如何返回字符串列表?
List<string> emisList = (
from p in subproductTypeyProduct
join q in dbEntitiesParams.PARAM_Rule
on new { p.ProductType, p.SubProductTypeCode }
equals new { ProductType = q.ProductTypeCode, SubProductTypeCode = q.SubProductCode }
select new { q.emis });
答案 0 :(得分:5)
无需投影匿名类型。只是简单的字符串。将select new { q.emis }
替换为select q.emis
。