I do the following linq query on an xml file, and it shows me this result, how can I remove the keys and the text (code =), I am programming on asp.net c #.
this is the linq query
var q = (from r in LicitacionesD.Descendants("Licitacion")
where r.Element("CodigoEstado").Value == "8"
select new
{
codigo = r.Element("CodigoExterno").Value + " " + r.Element("Nombre").Value
});