Code First approach in .Net Core(2.0): CRUD Operations

Note – You can find the source code of my sample application here. In my previous series of post, I explained the Create, Read, Update, Delete(CRUD) using Angular 5 with .Net Core 2 API. For Part I(Database first set up in .Net Core 2) is here and Part II(CRUD in Angular 4) is here. In this post, we … Continue reading Code First approach in .Net Core(2.0): CRUD Operations

CRUD operation in Angular 4 : Angular 4 + Core 2.0 CRUD operation Part II

Note – You can find the source code of my sample application here. This post is the Part II post for Angular 4 + Core 2.0 CRUD operation. In my previous post(Part I), I explained how to do Database first in .Net Core 2.0 and we created Employee Web API by Database first approach which you can find … Continue reading CRUD operation in Angular 4 : Angular 4 + Core 2.0 CRUD operation Part II

Database first in .Net Core 2.0 step by step: Angular 4 + Core 2.0 CRUD operation Part I

Note - Part II(CRUD operation with Angular 4) of this post is here. In my previous post, I have explained how to create an Angular 5 application in Visual Studio 2017 using .Net Core templates which you can find here. In this series of posts, I will explain the Create, Read, Update, Delete(CRUD) using Angular … Continue reading Database first in .Net Core 2.0 step by step: Angular 4 + Core 2.0 CRUD operation Part I

Create Angular 5 application using .Net Core 2.0 Template in Visual Studio 2017

Angular 5 has been announced recently and we already have a template added in the Visual Studio 2017 with .Net Core 2.0 If you want to know more about Angular in .Net Core then my post may help you to get the basic which you can find here and if you want to see how can … Continue reading Create Angular 5 application using .Net Core 2.0 Template in Visual Studio 2017

Build Angular App with .Net Core 2.0 Template(VS 2017) + deploy on Azure: Step by step guide

Picture reference - tv.ssw.com/tag/angular Note – You can find the source code of my sample application here. In my previous article, I have explained how to use .Net Core 2.0 Identity in your .Net Core 2.0 application, you can find the article here. In this article, we will see how to create your Angular application using Visual … Continue reading Build Angular App with .Net Core 2.0 Template(VS 2017) + deploy on Azure: Step by step guide

Authentication in .Net Core 2.0 : .Net Core 2.0 Identity step by step

Note – You can find the source code of my sample application here. Whenever you start creating an application, one of the most important modules is the authentication. In this article, I will explain how to add Login functionality to your .Net Core 2.0 application using .Net Core Identity, Let us first see what is ASP … Continue reading Authentication in .Net Core 2.0 : .Net Core 2.0 Identity step by step

Enable Swagger in your .Net core 2.0 application: Step by step guide

Note - You can find the source code of my sample application here. If you have ever worked with APIs then you might be familiar with Swagger, if you have not heard about Swagger then this post will help you to know the basic of Swagger and the steps to configure Swagger with yours .Net Core … Continue reading Enable Swagger in your .Net core 2.0 application: Step by step guide

Solution for the error “No executable found matching command “dotnet-ef” : .Net Core Errors Part I

.Net Core was introduced in last few months and people has started adopting it. In this series of post, I will put some frequent issues during .Net Core development and some important topics for the Core. In this post we will see how to resolve the error: No executable found matching command "dotnet-ef" This error … Continue reading Solution for the error “No executable found matching command “dotnet-ef” : .Net Core Errors Part I

Newly written SignalR with .Net Core 2.0 and TypeScript

Update 02/15/2018 - Please note that this is a pre-release version and it is not production ready yet. https://github.com/aspnet/SignalR/issues/429 for more discussion. Whenever we want to implement real-time web functionality in .Net then first thing comes to our mind is SignalR. What is SignalR? ASP.NET SignalR is a library for ASP.NET developers that makes developing real-time … Continue reading Newly written SignalR with .Net Core 2.0 and TypeScript