↧
Answer by abatishchev for LINQ to XML join issue
Have you tried not to use join but just:from customer in LoadXMLCustomers()from order in LoadXMLOrders()where customer.CustomerID = order.CustomerIDselect new PostXMLJoinOrder...Just notice that in...
View ArticleLINQ to XML join issue
I'm having real trouble with a join that I am trying to perform on two separate XML files.I have two classes that describe each object that I extract from the XML files, they are public class...
View Article