Getting Started with ASP.NET Core 3.0
By FoxLearn 9/10/2024 8:34:55 AM 3.42K
Open Visual Studio 2019 from your Start menu or desktop shortcut, then click create new project => Select ASP.NET Core Web Application.
Entering your project name, then click Create button
Selecting Web Application (Model-View-Controller), then click Change authentication
Selecting Individual User Accounts, then click OK button
Next, Click Create button
Press F5 to run your project, then click register link to create a new account.
If 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.
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.
- How to fix 'Authorization in ASP.NET Core' with 401 Unauthorized
- The name 'Session' does not exist in the current context
- How to create a Toast Notifications in ASP.NET Core
- How to Minify HTML using WebMarkupMin in ASP.NET Core
- How to fix 'IMvcBuilder' does not contain a definition for 'AddNewtonsoftJson'
- How to fix System.InvalidOperationException: Scheme already exists: Identity.Application
- How to fix 'DbContextOptionsBuilder' does not contain a definition for 'UseSqlServer'
- How to fix Using 'UseMvc' to configure MVC is not supported while using Endpoint Routing