asp.net MVC 2 - 如何在 中填充列表<T>。Select() using LINQ



我正在尝试使用以下LINQ查询从XML响应中填充IEnumerable<ResortSupplier>:我如何在我的LINQ查询中填充/创建IList<PerPricing> PricingDetail ?在当前的场景中,IList<PerPricing>中只有一个项目(PerPricing),但它需要成为未来选项的列表,并支持其他一些功能。我在下面进近时出现错误。

var resortPricing =
    xDoc.Elements("ResortPricingRS")
    .Elements("ResortPricing")
    .GroupBy(x => new
    {
        ID = x.Element(XName.Get("ResortId")).Value
    }
            )
    .Select(x => new ResortSupplier
    {
        SupplierCode = x.Key.ID,
        ResortProducts = x.Select(i => new Product
        {
            Code = i.Element("RoomCategory").Value,
            Description = i.Element("CategoryDesc").Value,
            Rating = (i.Elements("StarRatingCode").Any() ? i.Element("StarRatingCode").Value : ""),
            PricingDetail = { 
                            new PerPricing { 
                                    PricingType = "PerRoom",
                                    GroupNumber = 1 
                                    Price = decimal.Parse(i.Elements("TotalPrice").Any() ? i.Element("TotalPrice").Value : "0"),
                                    PricingError = (i.Elements("PricingError").Any() ? new Error { ErrorCode = i.Element("PricingError").Value } : null)
                                            } 
                            }
        }
                                ).ToList()
    }
            ).OrderBy(x => x.SupplierCode);

这些是我的对象:

[Serializable]
public class ResortSupplier
{
    public string SupplierCode { get; set; }
    public IList<Product> ResortProducts { get; set; }
}
[Serializable]
public class Product
{
    public string Code { get; set; }
    public string Description { get; set; }
    public string Rating { get; set; }
    public IList<PerPricing> PricingDetail { get; set; }
}
[Serializable]
public class PerPricing
{
    public string PricingType { get; set; }
    public int GroupNumber { get; set; }
    public decimal? Price { get; set; }
    public Error PricingError { get; set; }
}

添加new []:

PricingDetail = new [] { 
                        new PerPricing { 
                                PricingType = "PerRoom",
                                GroupNumber = 1 
                                Price = decimal.Parse(i.Elements("TotalPrice").Any() ? i.Element("TotalPrice").Value : "0"),
                                PricingError = (i.Elements("PricingError").Any() ? new Error { ErrorCode = i.Element("PricingError").Value } : null)
                                        } 
                        }
    }
                            ).ToList()

相关内容

  • 没有找到相关文章

最新更新