This originally created web-based application is created for recording daily life in the diary.
- Utilize entity framework to create database in SQL Server (✅)
- Developed CRUD functions with C# .NET 8.0 (✅)
- Created user interface with Blazor (✅)
- Launch DiaryApplication.sln
- Open terminal and write the command: dotnet ef migrations add initial --project DiaryApplication.Shared --startup-project DiaryApplication
- Write another command: dotnet ef database update --project DiaryApplication.Shared --startup-project DiaryApplication
- Database will be created in SQL Server.
- Blazor web framework allows Razor components to be hosted from server-side in ASP.NET Core (Blazor Server) and client-side in the browser on a WebAssembly-based .NET runtime (Blazor WebAssembly or Blazor WASM).