XDocument recientes = XDocument.Load(ObtenerFeedsRecientes());
XNamespace atomNS = "http://www.w3.org/2005/Atom";
var updates = from entry in recientes.Root.Elements(atomNS + "entry")
where DateTime.Parse(entry.Element(atomNS + "updated").Value) <= parameter
select entry;
Должен сделать свое дело. Предполагается, что parameter
имеет тип DateTime