私は1つの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(),
};