by mikes | May 31, 2019 | .NET Core, C#, JavaScript, Vue.js
Here is a quick walk through on creating a project that contains both a dot net core web api as well as a vue.js front end. To get started we enter the following command line dotnet new webapi -o vue_and_dotnet this will create a simple net core web api project next...
by mikes | May 29, 2019 | .NET Core, C#
In this second part we will start adding an endpoint for authentication to our web API. To do this we need to add a new controller. We will add an empty API controller and call it AccountsController. We will use dependency injection to add a UserManager, a...
by mikes | May 27, 2019 | .NET Core, C#, Windows
In this multi part blog post we will be creating a .NET Core based Web API with authentication and a number of other features. To start we will create a new project in Visual Studio by selecting the ASP.NET Core Web Application project type then we select the API...