I have a Customer class and use an XML response to fill the class with some data as below (ns is Namespace)
Dim GetCustomers = From c As XElement In XDoc.Descendants(ns + "customer")
Select New Customer With {.Name = c.Element(ns + "name"),
.Gender = CStr(c.Element(ns + "gender")),
...
Go to the complete details ...