AutoMapper is a library that can map your object properties with the other object. By default, It maps the value of one object to another by looking on the properties with similar names from the source object to destination object.
Category: Entity Framework Core
ASP.NET Core 3.1 Clean Architecture – Invoice Management App (Part 3 MediatR and FluentValidation)
We will follow CQRS (Command Query Responsibility Segregation) approach in handling our data. We will use MediatR to handle the mappings of request to response and FluentValidation for validation.
ASP.NET Core 3.1 Clean Architecture – Invoice Management App (Part 2 Auditing in EF Core with CreatedBy and LastModifiedBy)
Now we will create our domain entities and implement EF Core auditing by saving the user who created the record and the last user who modified the record.
ASP.NET Core 3.1 Clean Architecture – Invoice Management App (Part 1)
If you are not familiar with clean architecture, following along this article will help you understand it. I will try create my own implementation of clean architecture based on Jason Taylor's clean architecture.
ASP.NET Core 3 JWT Authentication
In this article we will implement JWT authentication in ASP.NET Core 3.1 API using Microsoft AspNetCore Identity.
Policy Based Authorization in Asp.Net Core Web Api
In the previous article we implement user authentication and secure our api endpoint using Authorize attribute. The Authorize attribute allowed us to make sure that only logged in users can access our api. In a real world application we only want to allow a certain type of users to access some part of the api. … Continue reading Policy Based Authorization in Asp.Net Core Web Api
Create User Login and Registration and Secure Asp.Net Core Web API
In this article I will show you to create user login and registration and how to secure your web api. This article is a continuation of my previous articles Creating a new ASP.NET Core Application Project and Setting Up Asp.Net Core Identity and How to Seed Users and Roles in Asp.Net Core if you haven't seen them … Continue reading Create User Login and Registration and Secure Asp.Net Core Web API
How to Seed Users and Roles in Asp.Net Core
In my previous article Creating a new ASP.NET Core Application Project and Setting Up Asp.Net Core Identity we created a new Asp.Net Core project and setup Asp.Net Core identity and database. Now in this article we will create I will show you how to create our initial data in our database. Using the same project that … Continue reading How to Seed Users and Roles in Asp.Net Core
Creating a new ASP.NET Core Application Project and Setting Up Asp.Net Core Identity
Creating Asp.Net Core Web Api Project Create a new Asp.Net Core Web Application and name it whatever name you want, but for me I will name my project as PayrollApp.Api since I plan to create a payroll application. Then select Api for project template and leave Authentication to no Authentication. Building Asp.Net Core Database and … Continue reading Creating a new ASP.NET Core Application Project and Setting Up Asp.Net Core Identity
How To Create an ASP.Net Core Web API Using Visual Studio 2019
In this article I will teach you how to create an ASP .Net Core Web API using Visual Studio 2019. If you don't have Visual Studio 2019, you can download it from https://visualstudio.microsoft.com/ for free. https://www.youtube.com/watch?v=v0CFQj8RZHI&feature=youtu.be In installing Visual Studio 2019. Make sure to check ASP.NET and web development. After installing Visual Studio 2019. Open … Continue reading How To Create an ASP.Net Core Web API Using Visual Studio 2019