让students列表按照StudentLastConnectDate属性进行正向排序,然后返回排序结果的前 count项
如果看的懂sql的话,他等同如下sql查询的
select top count * from students order by StudentLastConnectDate
基础解释就这样,如果你了解详细,请查看“C# linq”