How to update an ASP.NET Core 3.1 Application using EntityFrameworkCore Migrations

.NET Core 3.1

I’m going to show you how to update a .NET Core 3.1 MVC application. This application uses SQL Database so I will be using Entity Framework Core Migrations. Open up the project in Visual Studio for Mac. Open your Terminal and go to your project file path. Update the Employee.cs, Index.cshtml, AddorEdit.cshtml, and EmployeeController.cs $ […]

Continue reading


MySQL not starting issue resolution

I recently ran into an issue where my MySQL Database instance would fail to start when I went to start it from the XAMPP Application Manager. There weren’t any errors in the application log so I wasn’t able to troubleshoot from there. What’s this fix? Open up your Terminal and type $sudo killall mysqldb. Terminal […]

Continue reading