Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай ASP.NET Core Full Stack, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:11
    Course introduction
  2. Урок 2. 00:03:42
    A look at the finished application
  3. Урок 3. 00:00:40
    Software prerequisites
  4. Урок 4. 00:00:45
    Course outline
  5. Урок 5. 00:04:59
    Introduction to ASP.NET Core
  6. Урок 6. 00:00:14
    Introduction
  7. Урок 7. 00:02:12
    What is Blazor?
  8. Урок 8. 00:02:54
    Development environment setup
  9. Урок 9. 00:05:38
    Creating a Blazor WebAssembly project
  10. Урок 10. 00:14:21
    Exploring the Blazor project files
  11. Урок 11. 00:03:06
    Debugging a Blazor WebAssembly application
  12. Урок 12. 00:02:21
    Removing unneeded files and code
  13. Урок 13. 00:02:30
    Adding an HTML table
  14. Урок 14. 00:04:42
    Creating a C# model class
  15. Урок 15. 00:09:02
    Using Razor syntax to combine HTML with C#
  16. Урок 16. 00:03:55
    Using Bootstrap to style an HTML table
  17. Урок 17. 00:05:25
    Moving data to a separate C# client class
  18. Урок 18. 00:04:31
    Populating data on Razor component initialization
  19. Урок 19. 00:10:12
    Using the EditForm component
  20. Урок 20. 00:04:37
    Submitting data captured in an EditForm
  21. Урок 21. 00:09:54
    Using the NavigationManager component
  22. Урок 22. 00:03:18
    Using the InputSelect component
  23. Урок 23. 00:05:59
    Adding client-side validation
  24. Урок 24. 00:04:09
    Adding GetGame and UpdateGame to the C# client
  25. Урок 25. 00:11:35
    Using parameters in Razor components
  26. Урок 26. 00:05:16
    Adding an Edit button to table rows
  27. Урок 27. 00:11:18
    Adding a modal dialog for deletion
  28. Урок 28. 00:09:02
    Adding a Delete button to trigger deletion
  29. Урок 29. 00:00:09
    Introduction
  30. Урок 30. 00:06:12
    What is a Web/REST API?
  31. Урок 31. 00:00:48
    Creating a Web API project
  32. Урок 32. 00:04:44
    Building multiple projects in VS Code
  33. Урок 33. 00:04:17
    Debugging a Web API project
  34. Урок 34. 00:02:06
    Exploring the Web API project files
  35. Урок 35. 00:02:43
    Moving data to the Web API
  36. Урок 36. 00:04:24
    Implementing a GET ALL endpoint
  37. Урок 37. 00:05:00
    Implementing a GET BY ID endpoint
  38. Урок 38. 00:03:26
    Using Route Groups
  39. Урок 39. 00:07:18
    Implementing a POST endpoint
  40. Урок 40. 00:09:26
    Implementing a PUT endpoint
  41. Урок 41. 00:06:11
    Implementing a DELETE endpoint
  42. Урок 42. 00:07:21
    Adding server-side Validation
  43. Урок 43. 00:00:10
    Introduction
  44. Урок 44. 00:05:31
    Configuring an HttpClient object
  45. Урок 45. 00:08:02
    Client to server communication via HttpClient
  46. Урок 46. 00:07:52
    Invoking asynchronous methods from Razor components
  47. Урок 47. 00:04:24
    Understanding CORS
  48. Урок 48. 00:04:38
    Configuring CORS in a Web API
  49. Урок 49. 00:06:34
    Debugging server and client together in VS Code
  50. Урок 50. 00:00:37
    Introduction
  51. Урок 51. 00:01:32
    What is Docker?
  52. Урок 52. 00:09:25
    Running SQL Server as a Docker container
  53. Урок 53. 00:05:16
    Reading configuration from appsettings.json
  54. Урок 54. 00:06:37
    Using Secret Manager to store a connection string
  55. Урок 55. 00:03:43
    What is Entity Framework Core?
  56. Урок 56. 00:05:51
    Creating and configuring a DbContext
  57. Урок 57. 00:05:53
    Generating database migrations
  58. Урок 58. 00:05:13
    Configuring entities for database migration
  59. Урок 59. 00:02:48
    Applying a database migration
  60. Урок 60. 00:06:07
    Querying and creating entities via the DbContext
  61. Урок 61. 00:09:12
    Updating and deleting entities via the DbContext
  62. Урок 62. 00:04:50
    Running client and server end to end
  63. Урок 63. 00:00:26
    Introduction
  64. Урок 64. 00:02:36
    Adding filtering support to the Web API
  65. Урок 65. 00:01:07
    Requesting filtered data via HttpClient
  66. Урок 66. 00:04:32
    Adding the Search UI
  67. Урок 67. 00:01:52
    Trying out search end to end