ファイル xml を linq でクエリしたい、SubLayer という名前を持ち、"Where" という属性を持つ SubLayers のすべての子孫を取得したい
このクエリを linq で記述するにはどうすればよいですか? 私はこのように書きました:
var query3 = from c in xmlFile.Descendants("SubLayers").Elements("SubLayer").Where(c.Attribute("where" != null))
select c;
しかし、それは私が使用できないと言います
c
の中に
where condition.
どのように書きますか??