If you want to do this in LINQ, then something like this should work:
var myItems = from node in (from myNode in Nodes.Elements("MYTAG1")
where myNode != null
select myNode).SelectMany(x => x.Elements("MYTAG2"))
select new EPTableItem
{
};
of course, this will work differently if more MYTAG cases appear
source
share