Learn Type Script Quickly

In thig blog, we will learn Type Script. If you are going to learn Angular then you must be comfortable with TypeScript. What is TypeScript? TypeScript is a typed superset of Java Script that compiles the code into JavaScipt. Type Script Installation In order to work with TypeScript, first you have to install node package … Read more

Create Angular App and run using Angular CLI

Once you are done with the installation and setting the local development environment, we will create a new Angular App using Angular CLI. Install Angular CLI To install Angular CLI run this command in command prompt. npm install -g @angular/cli In above command -g means you are installing it globally, if you will not apply -g … Read more

Basic Authentication in Web API

In this blog, we will see the implementation of basic authentication in Web API. Security is very important aspects while working on the distributed application. While exposing an API we must take care about security. Basic Authentication is a simple authentication mechanism where the client sends requests with an Authorization header with word Basic. In … Read more

What is AutoMapper in C#?

AutoMapper is used to map data between two objects. In this blog, we will see how to use AutoMapper in our application. Let’s demonstrate the use of Automapper by an example. Suppose we have a class called Employee with 2 properties in it – Name and City class Employee     {         public string Name … Read more