我有一些记录
id title date
1 aaa 2005
2 bbb 2003
3 aaa 2007
4 ccc 2005
5 ccc 2009
我需要查询以按日期检索记录是最大值
id title date
2 bbb 2003
3 aaa 2007
5 ccc 2009
询问:
select *
from Table
where Table.date = (SELECT Max(date)
FROM Table temp
WHERE temp.title = Document.title)
我有 sql 查询,但此操作需要 Linq 查询