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
Use Take(), before converting to a List. This way EF can optimize the query it creates and only return the data you need.
Take()