Chapter 5: Getting Started with Blazor
In the previous chapter, we learned about the fundamentals of Razor View Engine and understood how it powers different web frameworks to render web UIs. We covered hands-on coding exercises to get a feel for both the MVC and Razor Pages web frameworks that ship with ASP.NET Core for building powerful web applications. In this chapter, we are going to look at the latest addition to the ASP.NET Core web framework – Blazor.
The Blazor web framework is a huge topic; this book splits the topic into two chapters for you to easily grasp the core concepts and fundamentals needed for you to get started with the framework. By the time you've finished both chapters, you will know how Blazor applications can be used in concert with various technologies to build powerful and dynamic web applications.
Here are the topics that we'll cover in this chapter:
- Understanding the Blazor web framework
- Understanding the goal of what...