LINQ opperators Flashcards

1
Q

LINQ Filtering

A

Where( x => x.id == id)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

LINQ Join

A

Join, GroupJoin

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

LINQ Join syntax

A

OuterData.Join(InnerData, o => o.key, i => i.key, (o,i) => result)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

LINQ Projection

A

Select: essential a transformation on the data

DATA.Select(d => d.func());

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

LINQ Sorting

A

OrderBy, OrderByDescending, ThenBy,ThenByDescending, Reverse

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

LINQ Group

A

GroupBy: can perform transformations on the data added to the group

How well did you know this?
1
Not at all
2
3
4
5
Perfectly