Skip to content

Instantly share code, notes, and snippets.

@enisn
Last active May 16, 2020 21:21
Show Gist options
  • Select an option

  • Save enisn/607a9654ddd85f752c2c5e741ba19ebe to your computer and use it in GitHub Desktop.

Select an option

Save enisn/607a9654ddd85f752c2c5e741ba19ebe to your computer and use it in GitHub Desktop.
LINQ Performance - 2
public static void Main(params string[] args)
{
var query =
from x in db.Books
where x.Year > 1990
select x;
var result = query.ToList();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment