BlazorWasmEFCoreExample

(โ˜… 171)

Example of a Blazor WebAssembly project that uses Entity Framework Core on the server for data access.

  • .gitattributes
  • .gitignore
  • blazorcontactsapp.jpg
  • BlazorWasmEFCoreExample.sln
  • LICENSE
  • README.md

# Installation Guide

1. Get the code
git clone https://github.com/JeremyLikness/BlazorWasmEFCoreExample

Downloads the entire project code from GitHub to your computer.

cd BlazorWasmEFCoreExample

Moves into the project folder you just downloaded.

2. .NET

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
dotnet ef migrations add --startup-project ContactsApp/Server --context ContactContext InitialContact

Type this command into your terminal and run it.

`dotnet ef migrations add --context ApplicationAuditDbContext Initial`

Type this command into your terminal and run it.

`dotnet ef database update --context ApplicationAuditDbContext`

Type this command into your terminal and run it.

โœ… After dotnet run, check the message or address shown in the terminal.

Pulled directly from this repo's README.

// repository documentation