Can someone please help me? I'm trying to extract the PostalCode, Latitude and Longitude values from the XML below using LINQ. My efforts are resulting in a null IEnumerable ! The XML has been retuned from the BING REST server. I'm sure it's not hard, it's just my LINQ is poor. Thanks in advance
<?xml version="1.0"?>
<GeocodeFeed >
<GeocodeEntity Id="1" xmlns="http://schemas.microsoft.com/search/local/2010/5/geocode">
<GeocodeRequest Culture="en-GB" Query="RG6 1WG" />
<GeocodeEntity Id="1" xmlns="http://schemas.microsoft.com/search/local/2010/5/geocode">
<GeocodeRequest Culture="en-GB" Query="RG6 1WG" />
<GeocodeResponse DisplayName="RG6 1WG, Wokingham, United Kingdom" EntityType="Postcode1" Confidence="High" StatusCode="Success">
<Address AdminDistrict="England" CountryRegion="United Kingdom" FormattedAddress="RG6 1WG, Wokingham, United Kingdom" PostalCode="RG6 1WG" />
<RooftopLocation Latitude="51.461179330945" Longitude="-0.925943478941917" />
</GeocodeResponse>
</GeocodeEntity></GeocodeFeed>