Limit Number of Results being returned in a List from Linq

后端 未结 3 1965
[愿得一人]
[愿得一人] 2021-02-03 16:54

I\'m using Linq/EF4.1 to pull some results from a database and would like to limit the results to the (X) most recent results. Where X is a number set by the user.

Is t

3条回答
  •  后悔当初
    2021-02-03 17:28

    Use Take(), before converting to a List. This way EF can optimize the query it creates and only return the data you need.

提交回复
热议问题