-
Notifications
You must be signed in to change notification settings - Fork 4
Getting started
This project runs on ASP.NET MVC web app running on .NET core. The project was setup on a windows machine with visual studio. But since it's a .NET core app, you can still run it on any platform that can run .NET core.
Once you've cloned and opened this project in Visual Studio. You've got to ensure Entity Framework core is installed. If it isn't open already, open the Package Manager Console
. In the console, run this command Install-Package Microsoft.EntityFrameworkCore.Tools -Pre
. This should install the EF core in your project. If you get an error about "not finding the Context", make sure it's being ran in the context of the wama.core
project. Since that's were the DbContext
resides.
Afterwards, run Update-Database
. This should create your database if it doesn't exist already. If it does, it performs the proper updates if any.
These aren't the only materials out there, but they're the official resources from Microsoft.