我有一个如下的 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 查询来检索具有最新创建日期的地址节点的员工记录。
你能帮我写一下Linq Query吗?
在此先感谢您的帮助