ASP.NET Core + Entity Framework Core + jQuery to Delete Records without Page...
In ASP.NET Core, you can perform the deletion of any row from an HTML Table located in the View, in such a way that there is No-Page reloading. You can achieve this using Entity Framework Core and...
View ArticleCreate ASP.NET Core Minimal API from Start till Finish
Minimal APIs are used to create HTTP APIs in a quick span of time with minimum dependencies. They are best suited for microservices and apps that require only minimum files with minimum dependencies....
View ArticleHost ASP.NET Core on Apache in Windows
Apache Web Server can be used to host ASP.NET Core apps. Here Apache is used as a reverse proxy server to redirect traffic to an ASP.NET Core web app running on Kestrel server. We will set the whole...
View ArticleImplementing Clean Architecure GitHub Repository by Steve “Ardalis” Smith
Clean Architecture is a popular software development architecture which can be used in .NET apps. In this tutorial we are going to implement the Clean Architecure GitHub Repository by Steve “Ardalis”...
View ArticleHow to use Self Signed Certificate in ASP.NET Core
In this article we will learn how to use Self-Signed Certificate (SSL) in ASP.NET Core app. This app is running in Kestrel Web Server and we will create our SSL from Powershell commands. Create and...
View ArticleHow to Host ASP.NET Core App in a Windows Service
We can host ASP.NET Core apps on Windows as a Windows Service. Note that this approach does not need IIS, Apache or Nginx. So the app automatically starts whenever the system restarts. Create ASP.NET...
View ArticleHost ASP.NET Core app on IIS
In this article we will host our ASP.NET Core app on Internet Information Services (IIS) in Windows. Make sure you have .NET SDK installed in your system. You can download it from here. Installing IIS...
View ArticleHost ASP.NET Core on Nginx in Linux
Nginx is the king of Web Servers and can be used to host ASP.NET Core apps on a Linux system. Nginx acts as a reverse proxy server to redirect traffic to an ASP.NET Core web app running on Kestrel...
View ArticleHost ASP.NET Core on Apache in Linux
In this tutorial we will host ASP.NET Core apps on Apache Web Server in Linux. Apache will be used as a reverse proxy server to redirect traffic to an ASP.NET Core web app running on Kestrel server....
View ArticleASP.NET Core – Duende IdentityServer authentication and authorization with...
In this tutorial we are going to implement Duende IdentityServer in ASP.NET Core app with ASP.NET Core Identity to provide authentication and authorization features. So users will be able to perform...
View Article