我具有下面的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 });

最佳答案

无需投影匿名类型。只是简单的字符串。将select new { q.emis }替换为select q.emis

关于c# - C#从匿名类型中选择字符串列表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55434258/

10-10 12:36