Joydip Kanjilal

How to use MiniProfiler in ASP.Net Core
Featured

How to use MiniProfiler in ASP.Net Core

Performance of web applications is a serious concern the world over. Developers have many tools they can use to profile…
How to use Azure Table storage in .Net
Featured

How to use Azure Table storage in .Net

Microsoft’s Azure cloud computing platform provides interoperable cloud computing services that are comprised of both open source and standards-based technologies.…
How to use action filters in ASP.Net Core MVC
Featured

How to use action filters in ASP.Net Core MVC

Filters in ASP.Net Core MVC allow us to execute code before or after specific stages of the request processing pipeline.…
How to enable CORS in ASP.Net Core
Featured

How to enable CORS in ASP.Net Core

The same-origin policy is a standard security mechanism in web browsers that allows communications between two URLs only if they…
How to consume a WCF SOAP service in ASP.Net Core
Featured

How to consume a WCF SOAP service in ASP.Net Core

Until REST APIs came along, SOAP (Simple Object Access Protocol) was the de facto standard protocol on which web services…
How to implement global exception handling in ASP.Net Core Web API
Featured

How to implement global exception handling in ASP.Net Core Web API

Exceptions are runtime errors that occur in an application. If they are not handled properly, the running program is terminated.…
How to use Scrutor in ASP.Net Core
Featured

How to use Scrutor in ASP.Net Core

Dependency injection (DI) facilitates loose coupling and promotes testability and maintenance. You can take advantage of dependency injection to change…
Association, aggregation, and composition in OOP explained
Featured

Association, aggregation, and composition in OOP explained

The Unified Modeling Language (UML) is a de-facto standard for modeling object-oriented systems. In UML there are five different types…
How to use session storage in ASP.Net Core
Featured

How to use session storage in ASP.Net Core

To store user-specific data in ASP.Net Core web applications, we use the session state. However, using session state in ASP.Net…
How to automate model validation in ASP.Net Core
Featured

How to automate model validation in ASP.Net Core

When we create applications that accept data from users, we must validate that data before storing it in a database.…
How to use Serilog in ASP.Net Core
Featured

How to use Serilog in ASP.Net Core

Logging is an essential feature for detecting and investigating issues in our applications. Logging frameworks make it easy to log…
How to Dockerize an ASP.Net Core application
Featured

How to Dockerize an ASP.Net Core application

Docker containers are used to provide a lightweight and more portable alternative to virtual machines. Unlike virtual machines, which must…
How to use the DbContext in Entity Framework Core
Featured

How to use the DbContext in Entity Framework Core

Microsoft’s Entity Framework is an open-source object-relational mapper, or ORM, for ADO.Net that helps you isolate the object model of…
How to use configuration providers in ASP.Net Core
Featured

How to use configuration providers in ASP.Net Core

Microsoft’s ASP.Net Core is an open-source, cross-platform, lean, and modular framework for building high-performance, scalable web applications. Configuration data in…
How to enforce SSL in ASP.Net Core
Featured

How to enforce SSL in ASP.Net Core

Secure Sockets Layer—SSL for short—is a standard security protocol that is used to encrypt communications between a web server and…
Back to top button