我有一个 xml。xml 有采购订单列表。在该采购订单中我有客户列表。所以通过下面的代码我得到了除客户列表之外的所有元素。我如何将该列表从 xml 分配到我在类中的列表。任何人都可以对其进行排序出去。
var ItemDet = from results in doc1.Descendants("PurchaseOrderClass")
select new PurchaseOrderClass
{
Vendor_Name = results.Element("Vendor_Name").Value.ToString(),
ItemCode = results.Descendants("ItemCode").First().Value.ToString(),
Quantity = Int32.Parse(results.Descendants("Quantity").First().Value),
Price = Int32.Parse(results.Element("Price").Value),
Discount = Int32.Parse(results.Descendants("Discount").First().Value),
TotalAmount = Int32.Parse(results.Descendants("TotalAmount").First().Value),
DeliveryDate = Convert.ToDateTime(results.Descendants("DeliveryDate").First().Value),
PO_Number = Int32.Parse(results.Descendants("PO_Number").First().Value),
//CusList= List<Customer> (results.Descendants("Customer")).ToList(),
};