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