实际上我在问我如何选择最后一条记录中的所有字段,如sql中的这个表达式:
Select * From Example OrderBy Descending
但我想使用Linq来实现Lambda Expression。
请原谅我的问题对你的专家来说是否便宜。
答案 0 :(得分:0)
你不需要,只是不要使用选择,你已经拥有了一切 您仍然需要告诉它您想要订购的内容(但在SQL中它是相同的,您提到的内容无效)
MyContext.Example
.OrderBy(item=>item.Name) // this orders by name
// Just don't do a select here & you have every field, you're already working with an ienumerable<Example>