LINQ opperators Flashcards
1
Q
LINQ Filtering
A
Where( x => x.id == id)
2
Q
LINQ Join
A
Join, GroupJoin
3
Q
LINQ Join syntax
A
OuterData.Join(InnerData, o => o.key, i => i.key, (o,i) => result)
4
Q
LINQ Projection
A
Select: essential a transformation on the data
DATA.Select(d => d.func());
5
Q
LINQ Sorting
A
OrderBy, OrderByDescending, ThenBy,ThenByDescending, Reverse
6
Q
LINQ Group
A
GroupBy: can perform transformations on the data added to the group