我希望从命名空间http://www.my.com/中获取所有包含属性的元素
编码:
IEnumerable<XElement> list1 =
from el in RootElement.DescendantsAndSelf()
//where it contains attributes from http://www.my.com/ - how?
select el;