Language Integrated Query (LINQ) Question:
How are Standard Query Operators useful in LINQ?
Answer:
Standard Query Operators in LINQ can be used for working with collections for any of the following and more.
1. Get total count of elements in a collection.
2. Order the results of a collection.
3. Grouping.
4. Computing average.
5. Joining two collections based on matching keys.
6. Filter the results
1. Get total count of elements in a collection.
2. Order the results of a collection.
3. Grouping.
4. Computing average.
5. Joining two collections based on matching keys.
6. Filter the results
Previous Question | Next Question |
How are Standard Query Operators implemented in LINQ? | List the important language extensions made in C# to make LINQ a reality? |