Удален по просьбе правообладателя
  1. Урок 1. 00:00:35
    Welcome
  2. Урок 2. 00:01:14
    What will you learn in this course?
  3. Урок 3. 00:01:26
    Who is the course for?
  4. Урок 4. 00:03:24
    What is an ORM?
  5. Урок 5. 00:02:30
    Where are ORMs useful?
  6. Урок 6. 00:05:17
    What is EF Core?
  7. Урок 7. 00:02:06
    Introducing: the database context
  8. Урок 8. 00:02:26
    How does a DbContext work?
  9. Урок 9. 00:00:37
    Section recap
  10. Урок 10. 00:06:33
    The application we will build the data access for
  11. Урок 11. 00:04:08
    Creating our first EFCore Model
  12. Урок 12. 00:11:00
    Getting the Model to work in our application
  13. Урок 13. 00:17:44
    Implementing data manipulation operations
  14. Урок 14. 00:08:16
    Implementing query behavior
  15. Урок 15. 00:04:09
    Seeing what goes on in the Database
  16. Урок 16. 00:04:05
    Projecting data to optimize queries
  17. Урок 17. 00:00:55
    Section recap
  18. Урок 18. 00:02:35
    Taking a look at the DB schema
  19. Урок 19. 00:04:50
    Introducing DataAnnotations for our Model
  20. Урок 20. 00:09:43
    Achieving similar results with FluentAPI
  21. Урок 21. 00:14:23
    One-to-many relationships between entities
  22. Урок 22. 00:12:09
    Converting between different data types
  23. Урок 23. 00:10:04
    Using owned and complex types to group data
  24. Урок 24. 00:09:01
    Generating values in the model
  25. Урок 25. 00:04:10
    Hiding some database fields from our model
  26. Урок 26. 00:03:29
    Applying global query filters
  27. Урок 27. 00:01:09
    Section recap
  28. Урок 28. 00:02:51
    Why do we need migrations?
  29. Урок 29. 00:06:01
    The 2 migration philosophies
  30. Урок 30. 00:08:48
    Adding our first migration
  31. Урок 31. 00:07:16
    Adding migrations after changing the model
  32. Урок 32. 00:05:24
    Executing Migrations from the CLI
  33. Урок 33. 00:06:12
    Dealing with an out-of-sync model
  34. Урок 34. 00:06:39
    The proper way to execute migrations
  35. Урок 35. 00:00:42
    Section recap
  36. Урок 36. 00:05:00
    What are the challenges in tests with ORMs?
  37. Урок 37. 00:05:18
    Using Test databases
  38. Урок 38. 00:13:30
    Using a database in memory
  39. Урок 39. 00:10:10
    Faking DbSets in unit tests
  40. Урок 40. 00:08:50
    The repository pattern
  41. Урок 41. 00:04:27
    Integration testing with EF Core
  42. Урок 42. 00:03:33
    Section recap
  43. Урок 43. 00:00:54
    Introduction
  44. Урок 44. 00:08:24
    Dependency Injection
  45. Урок 45. 00:10:07
    Configuring Logging
  46. Урок 46. 00:07:48
    DbContext Lifecycle
  47. Урок 47. 00:17:07
    More on repositories
  48. Урок 48. 00:04:01
    Different multi-tenant approaches
  49. Урок 49. 00:09:36
    Multi-tenant with discriminators
  50. Урок 50. 00:05:00
    Multi-tenant with separate databases
  51. Урок 51. 00:04:48
    My take on architecture
  52. Урок 52. 00:00:53
    Section recap
  53. Урок 53. 00:01:28
    More DbContext features?
  54. Урок 54. 00:27:27
    Using inheritance in your model
  55. Урок 55. 00:05:38
    Using Alternate keys
  56. Урок 56. 00:05:40
    One-to-one relationships
  57. Урок 57. 00:09:31
    Many-to-many relationships
  58. Урок 58. 00:03:15
    Using compound keys
  59. Урок 59. 00:07:37
    Using raw SQL queries for your entities
  60. Урок 60. 00:05:32
    Using keyless entities to query your database
  61. Урок 61. 00:12:57
    Using the ChangeTracker for fun & profit
  62. Урок 62. 00:01:21
    Section recap
  63. Урок 63. 00:04:20
    The typical types of performance issues
  64. Урок 64. 00:07:59
    Slow Queries & DB indices
  65. Урок 65. 00:07:00
    Using compiled queries to improve runtime performance
  66. Урок 66. 00:08:39
    Using batching to execute bulk queries
  67. Урок 67. 00:03:24
    Loading related data - strategies
  68. Урок 68. 00:15:41
    Untracked query results
  69. Урок 69. 00:10:59
    Solving Concurrency Issues
  70. Урок 70. 00:01:09
    Section recap
  71. Урок 71. 00:00:27
    When the DB already exists
  72. Урок 72. 00:09:44
    Using the DB to generate a model
  73. Урок 73. 00:05:58
    How can we further evolve the model?
  74. Урок 74. 00:04:55
    Regenerating every time: a demo
  75. Урок 75. 00:04:59
    Keeping in sync manually: a demo
  76. Урок 76. 00:00:08
    Section recap
  77. Урок 77. 00:01:00
    EF Core isn't just for SQL server
  78. Урок 78. 00:10:19
    Using another RDBMS's with EFCore
  79. Урок 79. 00:06:37
    What is CosmosDB?
  80. Урок 80. 00:15:31
    Switching our system to CosmosDB
  81. Урок 81. 00:01:10
    Section recap
  82. Урок 82. 00:00:45
    Conclusion