I have to query this table:
symbol time ------ ---------- aaa 2013-04-18 09:10:28.000 bbb 2013-04-18 09:10:27.000 aaa 2013-04
u can use lambda expression with Linq -
var result= (from li in List.Distinct().OrderByDescending(x => x.time) select li).FirstOrDefault();