ASP.Net Core

Category

Using AutoMapper in ASP.Net Core

AutoMapper is a convention based object-object mapper. It maps two different entities by transforming an input object of one type to an output object of another type. In this post, we will setup Automapper in ASP.Net core project.

Hosting ASP.NET Core on Linux using Nginx

ASP.NET Core is a fully open source, high-performance, and cross-platform framework. ASP.NET Core runs anywhere you need it to (Windows, Mac, Linux). In this post, we will see how to host ASP.NET core application on Linux(CentOS 7) with Nginx as the reverse proxy.

How to Send Email in ASP.Net Core 2.0

With the release of .Net Core 2.0, SmtpClient is now available. It is identical to what was there in full .Net framework. Ideally, the code to send email using SmtpClient you might have written in .Net framework should work in .Net Core 2.0 pretty much by copy-pasting.