Getting Started with ASP.NET Core 3.0

By FoxLearn 9/10/2024 8:34:55 AM   3.46K
Creating an ASP.NET Core project in Visual Studio 2019 is a straightforward process.

Open Visual Studio 2019 from your Start menu or desktop shortcut, then click create new project => Select ASP.NET Core Web Application.

asp.net core 3.0

Entering your project name, then click Create button

asp.net core 3.0

Selecting Web Application (Model-View-Controller), then click Change authentication

asp.net core change authentication

Selecting Individual User Accounts, then click OK button

asp.net core

Next, Click Create button

asp.net core

Press F5 to run your project, then click register link to create a new account.

asp.net core register formIf you get an error "A database operation failed while processing the request" you should click the Apply Migrations button, then press F5 to refresh your page.

asp.net core a database operation failed while processing the request

If you want to update your database, you can click Tool menu => Nuget Package Manager => Package Manager Console, then enter Update-Database

Finally, Enter dotnet ef database update to update modify to your database.