私は以下のようなXMLを持っています
<Employees>
<Employee>
<ID>1</ID>
<Address>
<City>Bangalore</City>
<CreatedOn>1-1-2012</CreatedOn>
</Address>
<Address>
<City>Pune</City>
<CreatedOn>1-10-2012</CreatedOn>
</Address>
</Employee>
<Employee>
<ID>2</ID>
<Address>
<City>Hyd</City>
<CreatedOn>1-1-2009</CreatedOn>
</Address>
<Address>
<City>Bombay</City>
<CreatedOn>1-1-2010</CreatedOn>
</Address>
</Employee>
</Employees>
C# で linq クエリを実行して、最新の作成日を持つアドレス ノードを持つ Employee レコードを取得したいと考えています。
Linq クエリの書き方を教えてください。
よろしくお願いいたします。