Last active
May 16, 2020 21:21
-
-
Save enisn/607a9654ddd85f752c2c5e741ba19ebe to your computer and use it in GitHub Desktop.
LINQ Performance - 2
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 = | |
| 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