Blog2017-11-11T22:48:26+01:00
2712, 2017

Identity in Asp.Net Core 2

In this tutorial you will learn how to use Asp.Net Core 2 Identity to implement user authentication and authorization. ASP.NET Core Identity is the new membership system that comes with .NET core. Unlike the previous version it uses claims based authentication which is one of the biggest changes from the previous versions of ASP.NET Identity. [...]

2712, 2017

Mapping in Asp.Net Core

What is AutoMapper and why should you use it? AutoMapper is simply object to object mapping. Object-object mapping works by transforming an input object of one type into an output object of a different type. With AutoMapper you have much less code to write since mapping can occur in many places in an application. Object-object [...]

2612, 2017

Angular 4 Lifecycle Hooks

In this tutorial we will learn to use Lifecycle Hooks in Anuglar. A component has a lifecycle managed by Angular. Angular creates it, renders it, creates and renders its children, checks it when its data-bound properties change, and destroys it before removing it from the DOM. Angular offers lifecycle hooks that provide visibility into these key life [...]

2512, 2017

Angular (2+) – Routing and Navitagion

What is Routing in angular, what is it used for and why should you use it? This article will tell you all about it! We use routing to separate different parts of our app, by using the URL to denote our location. The idea is that we might put our comments page at the URL /comments [...]

2012, 2017

Angular and Core project

  Hi and welcome. This is tutorial for web applications build with Asp.Net Core 2 in back-end and Angular 5 as front-end on Windows OS. We will also be using Visual Studio Code known as VS Code.   First you will need few things before we start:   Visual studio code: https://code.visualstudio.com/docs/?dv=win Node.js be sure [...]

Go to Top