How to use NSwag in ASP.Net Core 3.1 to generate API client code.
Category: Uncategorized
ASP.NET Core 3.1 Clean Architecture – Invoice Management App (Part 4 AutoMapper – Map object properties to another object)
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.
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 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.1 with React: Facebook external login
In this article I will teach you how to add Facebook external login in your ASP.NET Core 3.1 application with react. This is a continuation of my previous article ASP.NET Core 3.1 with React: User Authentication and Registration you might want to have a look on it before continuing.
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.
How To Connect To MySQL Database Using C# and Perform CRUD Operation
I created a tutorial before on How To Connect SQL Server Database Using C# and Perform CRUD Operation. Now I will use the same application that we built in that tutorial to connect to MySql database and perform a CRUD operation. https://www.youtube.com/watch?v=vtmmDglZ28E&feature=youtu.be For this tutorial you need to install MySql Connector. You can download it … Continue reading How To Connect To MySQL Database Using C# and Perform CRUD Operation
Hotel Reservation System C# Entity Framework Part 2
This is part 2 of my Hotel Reservation System using C# Entity Framework tutorial. In this article we will create our customer management and implement search function in our form. https://www.youtube.com/watch?v=VghcGBWJP1U&feature=youtu.be Add new form in your project and call it CustomerForm. Then style it like the image below. Use this names for controls in add … Continue reading Hotel Reservation System C# Entity Framework Part 2
C++ Displaying Text on Screen
In this article, we are going to learn how to display text on the screen using C++. I am using a Visual Studio 2017 Community Edition. You can download it for free on this link Visual Studio 2017 Community Edition. After installing, Step 1: Open Visual Studio 2017 Community Edition Step 2: Click File -> … Continue reading C++ Displaying Text on Screen