var Details = (from conAd in contactInformation.TransportAddresses
where conAd.AddressInformation.AddressId == 2
select new
{
conAd.AddressInformation.StateInformation.CountryInformation.LongName,
conAd.AddressInformation.StateInformation.LongName,
}).ToList();
It Is Showing Error "An anonymous type cannot have multiple properties with the same name",
how can I change the name "LongName" as it is from existing object
please help me