I am totally got confused with LINQ and Lambda expressions in C#. Please explain, what the difference in between them and when to use?
Asked
Active
Viewed 76 times
0
-
2LINQ is the `select from` syntax. Can also be referring to Linq extensions methods - `Select` `ToList` etc. Lamba is the syntax of `x => ...` as an anonymous function. They are many times used together. – SimpleVar Sep 07 '15 at 10:20
-
Thanks.. Nathan.. Is LINQ is related to writing the SQL query in C#, and Lambda are use full for manipulating the expressions in C#, is it correct. – passionTime Sep 07 '15 at 10:31