PrepAway - Latest Free Exam Questions & Answers

Which query parts should you use in sequence to complete the expression?

The user interface requires that a paged view be displayed of all the products sorted in alphabetical order.
The user interface supplies a current starting index and a page size in variables named startIndex and pageSize of type int.
You need to construct a LINQ expression that will return the appropriate Parts from the database from an existing
ContosoEntities context object named context. You begin by writing the following expression:
context.Parts

Which query parts should you use in sequence to complete the expression?
(To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)

PrepAway - Latest Free Exam Questions & Answers

A.
.OrderBy(x => x.Name)

B.
.Skip(pageSize)

C.
.Skip(startIndex)

D.
.Take(pageSize);

E.
.Take(startIndex)

One Comment on “Which query parts should you use in sequence to complete the expression?


Leave a Reply