Удален по просьбе правообладателя
  1. Урок 1. 00:00:36
    Welcome
  2. Урок 2. 00:00:35
    What will you learn in this course?
  3. Урок 3. 00:00:33
    Who is the course for and prerequisites
  4. Урок 4. 00:05:37
    Why do we have LINQ?
  5. Урок 5. 00:02:03
    A language for querying data
  6. Урок 6. 00:05:22
    A first LINQ example
  7. Урок 7. 00:03:35
    Why would you want to use LINQ?
  8. Урок 8. 00:00:39
    Section recap
  9. Урок 9. 00:03:06
    Introduction to our demo solution
  10. Урок 10. 00:04:30
    Using a simple where clause
  11. Урок 11. 00:03:46
    Refactoring statements into functions
  12. Урок 12. 00:03:19
    Chaining multiple where clauses
  13. Урок 13. 00:04:01
    Ordering data
  14. Урок 14. 00:03:25
    Multi-level ordering
  15. Урок 15. 00:02:57
    Using a custom comparer to order
  16. Урок 16. 00:00:55
    Section recap
  17. Урок 17. 00:09:34
    What is deferred execution in LINQ?
  18. Урок 18. 00:09:49
    Retrieving all results
  19. Урок 19. 00:10:41
    Retrieving a single item
  20. Урок 20. 00:11:23
    Projecting the data to another shape
  21. Урок 21. 00:00:44
    Section recap
  22. Урок 22. 00:02:58
    Introduction to getting partial results
  23. Урок 23. 00:06:22
    Splitting results into chunks
  24. Урок 24. 00:07:31
    Using Skip, Take and TakeWhile to retrieve a specific result
  25. Урок 25. 00:07:31
    Dividing results into logical parts with GroupBy
  26. Урок 26. 00:00:56
    Section recap
  27. Урок 27. 00:02:01
    Introduction
  28. Урок 28. 00:03:11
    Removing duplicates
  29. Урок 29. 00:03:10
    Checking for a single item
  30. Урок 30. 00:04:11
    Verifying all items
  31. Урок 31. 00:09:52
    Using aggregate functions
  32. Урок 32. 00:02:52
    Checking if 2 sequences are equal
  33. Урок 33. 00:00:40
    Section recap
  34. Урок 34. 00:01:27
    Introduction
  35. Урок 35. 00:01:51
    Concatenate two results
  36. Урок 36. 00:10:03
    Set operations on queries with the same type
  37. Урок 37. 00:07:01
    Exploding a subquery with SelectMany
  38. Урок 38. 00:25:26
    Join operations between 2 results
  39. Урок 39. 00:00:43
    Section recap
  40. Урок 40. 00:01:03
    Introduction
  41. Урок 41. 00:04:39
    IQueryable vs IEnumerable
  42. Урок 42. 00:03:49
    What can we write LINQ against?
  43. Урок 43. 00:09:08
    Making some IEnumerable methods ourselves
  44. Урок 44. 00:10:48
    IQueryable behind the scenes
  45. Урок 45. 00:01:14
    Section recap
  46. Урок 46. 00:02:27
    Why would we want to parallelize our queries?
  47. Урок 47. 00:14:20
    Introduction to PLINQ
  48. Урок 48. 00:06:48
    Things to consider when using PLINQ
  49. Урок 49. 00:07:45
    Potential pitfalls
  50. Урок 50. 00:00:59
    Section recap
  51. Урок 51. 00:01:25
    Conclusion