记录是这样输入的。
id message timestamp
1 hi 12-12-2012 11.00
2 gii 12-12-2012 11.01
如何编写基于时间戳获取新消息记录的查询?我的意思是最后一条记录。
记录是这样输入的。
id message timestamp
1 hi 12-12-2012 11.00
2 gii 12-12-2012 11.01
如何编写基于时间戳获取新消息记录的查询?我的意思是最后一条记录。
使用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)