1. Урок 1. 00:07:18
    Introduction to the course
  2. Урок 2. 00:05:11
    Setting up the developer environment
  3. Урок 3. 00:02:54
    Getting help
  4. Урок 4. 00:02:16
    Course assets and source code
  5. Урок 5. 00:02:27
    Introduction
  6. Урок 6. 00:07:22
    Creating the .Net API Project using the dotnet CLI
  7. Урок 7. 00:07:18
    Setting up VS code to work with C#
  8. Урок 8. 00:10:06
    .Net 6 update - switching to the classic hosting model
  9. Урок 9. 00:12:42
    Getting to know the API project files
  10. Урок 10. 00:05:45
    Creating our first Entity
  11. Урок 11. 00:06:35
    Introduction to Entity Framework
  12. Урок 12. 00:03:40
    Adding Entity Framework to our project
  13. Урок 13. 00:08:42
    Adding a DbContext class
  14. Урок 14. 00:11:57
    Creating the Connection string
  15. Урок 15. 00:04:45
    Creating the database using Entity Framework Code first migrations
  16. Урок 16. 00:11:01
    Adding a new API Controller
  17. Урок 17. 00:06:22
    Making our code Asynchronous
  18. Урок 18. 00:10:31
    Saving our code into Source control
  19. Урок 19. 00:02:41
    Section 2 Summary
  20. Урок 20. 00:01:57
    Introduction
  21. Урок 21. 00:08:01
    Creating the Angular application
  22. Урок 22. 00:10:23
    Running the angular project and reviewing the bootstrap of the app
  23. Урок 23. 00:02:53
    Adding VS Code extensions to work with Angular
  24. Урок 24. 00:13:14
    Making HTTP requests in Angular
  25. Урок 25. 00:04:34
    Adding CORS support in the API
  26. Урок 26. 00:05:11
    Displaying the fetched users in the browser
  27. Урок 27. 00:09:32
    Adding bootstrap and font-awesome
  28. Урок 28. 00:06:32
    Using HTTPS in angular - MAC
  29. Урок 29. 00:06:36
    Using HTTPS in angular - WINDOWS
  30. Урок 30. 00:02:17
    Saving into source control
  31. Урок 31. 00:01:21
    Section 3 summary
  32. Урок 32. 00:03:11
    Introduction
  33. Урок 33. 00:07:18
    Safe storage of passwords
  34. Урок 34. 00:02:52
    Updating the user entity
  35. Урок 35. 00:03:58
    Creating a base API controller
  36. Урок 36. 00:11:03
    Creating an Account Controller with a register endpoint
  37. Урок 37. 00:09:18
    Using the debugger
  38. Урок 38. 00:07:25
    Using DTOs
  39. Урок 39. 00:03:38
    Adding validation
  40. Урок 40. 00:10:40
    Adding a login endpoint
  41. Урок 41. 00:05:43
    JSON web tokens
  42. Урок 42. 00:07:16
    Adding a token service
  43. Урок 43. 00:06:51
    Adding the create token logic
  44. Урок 44. 00:05:46
    Creating a User DTO and returning the token
  45. Урок 45. 00:06:48
    Adding the authentication middleware
  46. Урок 46. 00:06:59
    Adding extension methods
  47. Урок 47. 00:03:47
    Section 4 summary
  48. Урок 48. 00:01:45
    Introduction
  49. Урок 49. 00:10:03
    Creating a nav bar
  50. Урок 50. 00:06:08
    Introduction to Angular template forms
  51. Урок 51. 00:05:49
    Introduction to Angular services
  52. Урок 52. 00:04:01
    Injecting services into components
  53. Урок 53. 00:06:06
    Using conditionals to show and remove content
  54. Урок 54. 00:06:49
    Using the angular bootstrap components - dropdown
  55. Урок 55. 00:09:00
    Introduction to observables
  56. Урок 56. 00:12:30
    Persisting the login
  57. Урок 57. 00:05:18
    Using the async pipe
  58. Урок 58. 00:06:16
    Adding a home page
  59. Урок 59. 00:05:39
    Adding a register form
  60. Урок 60. 00:10:08
    Parent to child communication
  61. Урок 61. 00:05:35
    Child to parent communication
  62. Урок 62. 00:09:55
    Hooking up the register method to the service
  63. Урок 63. 00:01:57
    Section 5 summary
  64. Урок 64. 00:01:50
    Introduction
  65. Урок 65. 00:07:45
    Creating some more components
  66. Урок 66. 00:03:35
    Adding the nav links
  67. Урок 67. 00:02:43
    Routing in code
  68. Урок 68. 00:09:40
    Adding a toast service for notifications
  69. Урок 69. 00:08:53
    Adding an Angular route guard
  70. Урок 70. 00:04:22
    Adding a dummy route
  71. Урок 71. 00:05:40
    Adding a new theme
  72. Урок 72. 00:05:38
    Tidying up the app module by using a shared module
  73. Урок 73. 00:02:24
    Section 6 summary
  74. Урок 74. 00:01:10
    Introduction
  75. Урок 75. 00:09:46
    Creating an error controller for testing errors
  76. Урок 76. 00:07:23
    Handling server errors
  77. Урок 77. 00:11:38
    Exception handling middleware
  78. Урок 78. 00:08:08
    Testing errors in the client
  79. Урок 79. 00:13:18
    Adding an error interceptor
  80. Урок 80. 00:06:20
    Validation errors
  81. Урок 81. 00:03:44
    Handling not found
  82. Урок 82. 00:10:51
    Adding a server error page
  83. Урок 83. 00:03:10
    Section 7 summary
  84. Урок 84. 00:01:59
    Introduction
  85. Урок 85. 00:03:49
    Extending the user entity
  86. Урок 86. 00:04:15
    Adding a DateTime extension to calculate age
  87. Урок 87. 00:08:38
    Entity Framework relationships
  88. Урок 88. 00:06:40
    Generating seed data
  89. Урок 89. 00:11:08
    Seeding data part one
  90. Урок 90. 00:07:18
    Seeding data part two
  91. Урок 91. 00:07:26
    The repository pattern
  92. Урок 92. 00:06:52
    Creating a repository
  93. Урок 93. 00:05:10
    Updating the users controller
  94. Урок 94. 00:02:33
    Adding a DTO for Members
  95. Урок 95. 00:03:36
    Adding AutoMapper
  96. Урок 96. 00:05:37
    Using AutoMapper
  97. Урок 97. 00:02:44
    Configuring AutoMapper
  98. Урок 98. 00:13:31
    Using AutoMapper queryable extensions
  99. Урок 99. 00:02:04
    Section 8 summary
  100. Урок 100. 00:01:47
    Introduction
  101. Урок 101. 00:07:39
    Using TypeScript
  102. Урок 102. 00:02:59
    Creating the member interface
  103. Урок 103. 00:08:23
    Adding a member service
  104. Урок 104. 00:05:51
    Retrieving the list of members
  105. Урок 105. 00:04:46
    Creating member cards
  106. Урок 106. 00:06:11
    Adding some style to the cards
  107. Урок 107. 00:05:20
    Adding animated buttons
  108. Урок 108. 00:07:44
    Using an interceptor to send the token
  109. Урок 109. 00:05:45
    Routing to the detailed page
  110. Урок 110. 00:06:10
    Styling the member detailed page
  111. Урок 111. 00:06:30
    Styling the member detailed page part two
  112. Урок 112. 00:13:08
    Adding a photo gallery
  113. Урок 113. 00:01:50
    Section 9 summary
  114. Урок 114. 00:02:18
    Introduction
  115. Урок 115. 00:05:32
    Creating a member edit component
  116. Урок 116. 00:07:57
    Creating the edit template form
  117. Урок 117. 00:08:50
    Adding the update functionality
  118. Урок 118. 00:07:24
    Adding a Can Deactivate route guard
  119. Урок 119. 00:08:45
    Persisting the changes in the API
  120. Урок 120. 00:02:39
    Updating the user in the client app
  121. Урок 121. 00:10:05
    Adding loading indicators
  122. Урок 122. 00:09:53
    Using the service to store state
  123. Урок 123. 00:01:22
    Section 10 summary
  124. Урок 124. 00:07:12
    Introduction
  125. Урок 125. 00:06:17
    Cloudinary Account
  126. Урок 126. 00:04:58
    Configuring cloudinary in the API
  127. Урок 127. 00:10:53
    Adding a photo service
  128. Урок 128. 00:09:10
    Updating the users controller
  129. Урок 129. 00:07:47
    Testing the photo upload
  130. Урок 130. 00:06:01
    Using the Created At Route method
  131. Урок 131. 00:04:06
    Adding a photo editor component
  132. Урок 132. 00:10:28
    Adding a photo uploader
  133. Урок 133. 00:08:25
    Adding a photo uploader part two
  134. Урок 134. 00:06:41
    Setting the main photo in the API
  135. Урок 135. 00:09:34
    Adding the main photo image to the nav bar
  136. Урок 136. 00:07:37
    Setting the main photo in the client
  137. Урок 137. 00:06:34
    Deleting photos - API
  138. Урок 138. 00:05:25
    Deleting photos - Client
  139. Урок 139. 00:01:35
    Section 11 summary
  140. Урок 140. 00:02:00
    Introduction
  141. Урок 141. 00:06:03
    Reactive forms introduction
  142. Урок 142. 00:02:50
    Client side validation
  143. Урок 143. 00:06:12
    Adding custom validators
  144. Урок 144. 00:08:31
    Validation feedback
  145. Урок 145. 00:13:11
    Creating a reusable text input
  146. Урок 146. 00:02:32
    Using the form builder service
  147. Урок 147. 00:05:17
    Expanding the register form
  148. Урок 148. 00:13:19
    Adding a reusable date input
  149. Урок 149. 00:06:46
    Updating the API register method
  150. Урок 150. 00:12:18
    Client side registration
  151. Урок 151. 00:02:05
    Section 12 summary
  152. Урок 152. 00:05:40
    Introduction
  153. Урок 153. 00:09:01
    Adding a paged list class
  154. Урок 154. 00:08:50
    Adding helper classes for pagination
  155. Урок 155. 00:11:38
    Using the pagination classes
  156. Урок 156. 00:10:50
    Setting up client pagination
  157. Урок 157. 00:05:18
    Using the angular bootstrap pagination component
  158. Урок 158. 00:06:55
    Adding filtering to the API
  159. Урок 159. 00:05:59
    Adding additional filters
  160. Урок 160. 00:11:29
    Cleaning up the member service
  161. Урок 161. 00:10:39
    Adding filter buttons to the client
  162. Урок 162. 00:04:32
    Adding sorting functionality
  163. Урок 163. 00:08:37
    Adding an action filter
  164. Урок 164. 00:05:26
    Making the Last Active action filter more optimal
  165. Урок 165. 00:06:51
    Sorting on the client
  166. Урок 166. 00:05:32
    Formatting dates
  167. Урок 167. 00:09:20
    Restoring the caching for members
  168. Урок 168. 00:10:19
    Restoring caching for member detailed
  169. Урок 169. 00:06:14
    Remembering the filters for a user in the service
  170. Урок 170. 00:02:00
    Section 13 summary
  171. Урок 171. 00:02:33
    Introduction
  172. Урок 172. 00:08:19
    Adding a likes entity
  173. Урок 173. 00:04:45
    Adding a likes repository
  174. Урок 174. 00:07:40
    Implementing the likes repository
  175. Урок 175. 00:11:00
    Controller methods for the likes feature
  176. Урок 176. 00:07:11
    Setting up the likes functions in the Angular app
  177. Урок 177. 00:07:29
    Adding the likes component
  178. Урок 178. 00:07:34
    Adding pagination for the likes
  179. Урок 179. 00:06:09
    Paginating the likes on the client
  180. Урок 180. 00:02:12
    Section 14 summary
  181. Урок 181. 00:01:42
    Introduction
  182. Урок 182. 00:05:48
    Setting up the entities for messaging
  183. Урок 183. 00:06:07
    Setting up the message repository
  184. Урок 184. 00:02:40
    Setting up the automapper profiles
  185. Урок 185. 00:08:26
    Adding a message controller
  186. Урок 186. 00:10:20
    Getting the messages from the Repo
  187. Урок 187. 00:09:41
    Getting the message thread for 2 users
  188. Урок 188. 00:12:51
    Setting up the Angular app for messaging
  189. Урок 189. 00:12:19
    Designing the inbox
  190. Урок 190. 00:05:31
    Adding the message thread in the client
  191. Урок 191. 00:11:01
    Styling the message thread
  192. Урок 192. 00:07:33
    Activating the message tab
  193. Урок 193. 00:09:23
    Using query params
  194. Урок 194. 00:08:23
    Using route resolvers
  195. Урок 195. 00:08:04
    Sending messages
  196. Урок 196. 00:02:48
    Fixing the photo weirdness
  197. Урок 197. 00:05:58
    Deleting messages on the API
  198. Урок 198. 00:07:40
    Deleting messages on the client
  199. Урок 199. 00:01:54
    Section 15 summary
  200. Урок 200. 00:04:11
    Introduction
  201. Урок 201. 00:06:20
    Setting up the entities
  202. Урок 202. 00:06:34
    Configuring the DbContext
  203. Урок 203. 00:04:37
    Configuring the startup class
  204. Урок 204. 00:05:46
    Refactoring and adding a new migration
  205. Урок 205. 00:06:33
    Updating the seed method
  206. Урок 206. 00:06:12
    Updating the account controller
  207. Урок 207. 00:06:13
    Adding roles to the app
  208. Урок 208. 00:08:42
    Adding the roles to the JWT token
  209. Урок 209. 00:05:06
    Adding policy based authorisation
  210. Урок 210. 00:04:12
    Getting the users with roles
  211. Урок 211. 00:05:58
    Editing user roles
  212. Урок 212. 00:02:13
    Adding an admin component
  213. Урок 213. 00:09:35
    Adding an admin guard
  214. Урок 214. 00:09:02
    Adding a custom directive
  215. Урок 215. 00:07:35
    Adding the edit roles component
  216. Урок 216. 00:09:15
    Setting up modals
  217. Урок 217. 00:05:38
    Editing roles in the client
  218. Урок 218. 00:11:17
    Editing roles part two
  219. Урок 219. 00:01:26
    Section 16 summary
  220. Урок 220. 00:04:30
    Introduction
  221. Урок 221. 00:05:07
    Adding a presence hub
  222. Урок 222. 00:04:03
    Authenticating to SignalR
  223. Урок 223. 00:10:30
    Client side SignalR
  224. Урок 224. 00:11:38
    Adding a presence tracker
  225. Урок 225. 00:07:51
    Displaying online presence
  226. Урок 226. 00:09:05
    Creating a message hub
  227. Урок 227. 00:04:38
    Adding the send message method to the hub
  228. Урок 228. 00:04:06
    Adding the hub connection to the message service
  229. Урок 229. 00:06:08
    Refactoring the message components to use the hub
  230. Урок 230. 00:07:08
    Sending messages via the hub
  231. Урок 231. 00:10:03
    Tracking the message groups
  232. Урок 232. 00:06:51
    Updating the message hub with group tracking
  233. Урок 233. 00:05:26
    Dealing with UTC date formats
  234. Урок 234. 00:11:02
    Notifying users when they receive a message
  235. Урок 235. 00:06:50
    Optimizing the presence
  236. Урок 236. 00:12:36
    Optimizing the messages
  237. Урок 237. 00:01:39
    Section 17 summary
  238. Урок 238. 00:03:29
    Introduction
  239. Урок 239. 00:06:19
    Implementing the unit of work
  240. Урок 240. 00:07:55
    Refactoring the controllers to use the unit of work
  241. Урок 241. 00:09:16
    Optimizing queries part one
  242. Урок 242. 00:05:48
    Fixing UTC dates again
  243. Урок 243. 00:05:18
    Optimizing queries part two
  244. Урок 244. 00:07:46
    Adding a confirmation service to the angular app
  245. Урок 245. 00:07:34
    Getting the data from the confirmation modal
  246. Урок 246. 00:04:19
    Tidying up the member message component
  247. Урок 247. 00:02:46
    Section 18 summary
  248. Урок 248. 00:06:58
    Photo management challenge
  249. Урок 249. 00:06:50
    Introduction
  250. Урок 250. 00:05:44
    Preparing the angular app and serving this from the API server
  251. Урок 251. 00:05:11
    Adding a fallback controller
  252. Урок 252. 00:04:59
    Creating an angular production build
  253. Урок 253. 00:07:42
    Switching the DB Server to PostGres
  254. Урок 254. 00:08:18
    Changing the DB Server in our app
  255. Урок 255. 00:07:44
    Setting up Heroku
  256. Урок 256. 00:11:16
    Deploying the app to Heroku
  257. Урок 257. 00:11:11
    Using branches in git and connecting Heroku to GitHub
  258. Урок 258. 00:04:44
    Merging changes and redeploying
  259. Урок 259. 00:05:18
    End of course summary
  260. Урок 260. 00:11:22
    How to update .Net 5 to .Net 6
  261. Урок 261. 00:19:08
    .Net 6 new features and how to update the project to use them
  262. Урок 262. 00:14:03
    Updating Angular to v12
  263. Урок 263. 00:21:22
    How to update Bootstrap to v5