InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between the Take and Skip clause in LINQ? |
|
Answer» Following are the difference between TAKE and SKIP CLAUSE 1. Take clause- Take clause in LINQ is USED to RETURN a specific number of elements. 2. Skip clause- Skip clause is used to skip the specified number of elements in the QUERY and return rest all of the present elements. |
|