0

记录是这样输入的。

id     message    timestamp
1      hi         12-12-2012 11.00
2      gii        12-12-2012 11.01

如何编写基于时间戳获取新消息记录的查询?我的意思是最后一条记录。

4

1 回答 1

1

使用Max方法。

DateTime[] arr = new DateTime[] 
    { DateTime.Today, DateTime.Today.AddDays(1), DateTime.Today.AddDays(2) };
DateTime lastEntity = arr.Max(x => x.Date);  // equals DateTime.Today.AddDays(2)
于 2012-12-12T10:00:41.627 回答