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

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

ErrorCode = ‘0x80004005 : 80008083: .Net Core 2.0 + IIS exception

We all know that .Net Core has been announced so people started implementing with .Net core. One exception which people are getting while frequently while deploying .Net Core application(created by Visual Studio 2017) on IIS is as below: Application ‘<IIS path>’ with physical root ‘<Application path>’ failed to start process with commandline ‘”dotnet” .\MyApp.dll’, ErrorCode = … Continue reading ErrorCode = ‘0x80004005 : 80008083: .Net Core 2.0 + IIS exception

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

C# 7.0 feature Part I : Pattern matching

In this series of posts, I will explain the new features of C# 7.0 Let us see the Pattern Matching feature in the current post. There are currently 2 existing language constructs which has been enhanced with patterns by Microsoft team: with the keyword is With Switch case Before starting let us see some advantages of … Continue reading C# 7.0 feature Part I : Pattern matching

C# 8.0 Expected Features Part – II : Implementation of method in the Interface

In my previous post, I have explained about one of the first four features of C# 8.0 which has been announced by Microsoft recently. In this post, I will explain one more future feature which is Default Interface Methods. This feature will allow interfaces to fully define methods just like abstract classes. However,  interfaces will … Continue reading C# 8.0 Expected Features Part – II : Implementation of method in the Interface