Swagger Integration in Asp.net Web API using Identity
https://developer.okta.com/blog/2018/07/27/build-crud-app-in-aspnet-framework-webapi-and-angular
To Enable cors PM> Install-Package Microsoft.AspNet.WebApi.Cors
config.EnableCors();
For more info about web api refer this link https://docs.microsoft.com/en-us/aspnet/web-api/
PM> enable-migrations (if you haven't already) PM> add-migration [enter] PM> nameYourMigration [enter] (view the migration file to verify your properties are going to be added) PM> update-database [enter] Check your AspNetUsers db table to be sure the properties were added correctly