Practicing and exploring
Test your knowledge and understanding by answering some questions, getting some hands-on practice, and exploring this chapter’s topics with deeper research.
Exercise 15.1 – Test your knowledge
Answer the following questions:
- What are the four Blazor render modes, and how are they different?
- In a Blazor Web App project, compared to an ASP.NET Core MVC project, what extra configuration is required?
- Why should you avoid the Blazor Server and Blazor Server Empty project templates?
- In a Blazor Web App project, what does the
App.razor
file do? - What is the main benefit of using the
<NavLink>
component? - How can you pass a value into a component?
- What is the main benefit of using the
<EditForm>
component? - How can you execute some statements when parameters are set?
- How can you execute some statements when a component appears?
- One of the benefits of Blazor is being able...