expressappframework-402125-getting-started-in-depth-tutorial-blazor.md
This tutorial explains how to build an application that targets .NET framework using Windows Forms and XAF’s ASP.NET Core Blazor UI. The application should store employee information and other related objects. It uses Entity Framework Core for data access.
Tip
For additional information on how to choose an ORM that suits your needs, refer to the following topic: Why We Recommend EF Core over XPO for New Development.
If you are new to XAF, be sure to review our XAF product page for important background information on our award-winning application framework.
Before you start the tutorial, read this section and ensure that the following conditions are met:
This tutorial is organized in the following manner:
This tutorial uses Microsoft’s SQL Server as its target database management system (DBMS). As you may already know, XAF supports multiple database management systems (see the list here). If you’d like to use a different DBMS, be sure to specify the appropriate connection string.
XAF apps create a database with a name that matches the name used for the solution itself. To change names, edit the connection string in the application configuration file (appsettings.json).
Define the Data Model and Set the Initial Data
See Also