I have a 3rd party web service which returns different XML data depending on the request sent to the service.
What i would like to do is load this data into a class (a bit like Linq to SQL when i drop a table and the classes are created for me) but im not sure where to start? Especially if the response returned could have different elements etc.
I've read MSDN and understand the logic and what needs to be done but i would like some guidance on how should i process this data (the data returned as the response) or what classes do i need to use in order to take advantage on Linq to XML so i dont need to create all properties to hold the data?
Looking for any help, guidance and example that i could refer to please?
Thanks