名前空間http://www.my.com/から属性を含むすべての要素を取得したい
コード:
IEnumerable<XElement> list1 =
from el in RootElement.DescendantsAndSelf()
//where it contains attributes from http://www.my.com/ - how?
select el;