I wish to get all elements that contain attributes from namespace http://www.my.com/
The code:
IEnumerable<XElement> list1 =
from el in RootElement.DescendantsAndSelf()
//where it contains attributes from http://www.my.com/ - how?
select el;
Verify namespace part of attribute name: