Search Results

-1
votes

Select XML nodes as rows

If you can use it, the linq api is convenient for XML: var addresses = dataContext.People.Addresses .Elements("address") .Select(address => new { street …