ASP.NET Core: Converting Synchronous Calls to Asynchronous

ASP.NET Core: Converting Synchronous Calls to Asynchronous

English | MP4 | AVC 1280×720 | AAC 48KHz 2ch | 0h 47m | 200 MB

Review key concepts that can help you gain a more practical understanding of asynchronous programming. Join instructor Reynald Adolphe as he covers how to switch from synchronous programming to asynchronous programming. Reynald explores the principles behind the await and async keywords, and provides synchronous and asynchronous demonstrations with a desktop app. He then goes over how to convert synchronous code to asynchronous code—and vice versa—in ASP.NET Core and Entity Framework Core, and explores how to test an application to confirm that the conversion was done successfully.

Topics include:

  • Converting a desktop app to be asynchronous
  • Creating an ASP.Net Core project and model
  • Creating a controller
  • Converting synchronous code to asynchronous code
  • Updating views
Table of Contents

Introduction
1 Welcome
2 What you should know
3 Using the exercise files

Async Recap and Desktop Demo
4 Set up your environment
5 Desktop app overview
6 Synchronous desktop demo
7 Convert desktop app to async
8 Overview of async and await

Update to Async in ASP.NET Core and Entity Framework Core
9 Create an ASP.Net Core project and model
10 Controller Entity Framework and migration
11 Update views
12 Convert from sync to async

Reverse to Sync in ASP.NET Core and Entity Framework Core
13 Create an ASP.Net Core project and model
14 Controller Entity Framework and migration
15 Update views
16 Convert from async to sync

Conclusion
17 Next steps