Skip to content

Instantly share code, notes, and snippets.

@enisn
Created May 16, 2020 21:21
Show Gist options
  • Save enisn/6ec5edcc0a66da05aeca1c5a175bc410 to your computer and use it in GitHub Desktop.
Save enisn/6ec5edcc0a66da05aeca1c5a175bc410 to your computer and use it in GitHub Desktop.
LINQ Performance - 3
public static void Main(params string[] args)
{
var query = db.Books.Where(x => x.Year > 1990);
var result = query.ToList();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment