Created
May 16, 2020 21:21
-
-
Save enisn/6ec5edcc0a66da05aeca1c5a175bc410 to your computer and use it in GitHub Desktop.
LINQ Performance - 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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