
How to use OData with ASP.NET Core Web API
In this article, let's look at how we can add OData capabilities to a simple Web API using the latest OData package and ASP.NET Core as our stack.
In this article, let's look at how we can add OData capabilities to a simple Web API using the latest OData package and ASP.NET Core as our stack.
In this simple quickstart, let's look at how we can integrate ASP.NET Core with MongoDB and perform basic CRUD operations
In this article, let's deep dive into using IOptions pattern in ASP.NET Core and the variations, mutations and customization etc with a detailed example.
ASP.NET Core WebAPI actions CAN have void return types. The framework returns an EmptyResult for such actions with a default 200 (OK) status Code.
This can be particularly observed in the cases of HttpDelete operations where no return is expected by the client in most cases.
In this article, let's discuss how we can implement Half-Duplex and Full-Duplex communication with gRPC and ASP.NET Core with illustrating examples.
In this article, let's discuss the issue of XSRF and how Antiforgerytoken helps in preventing such attacks in ASP.NET Core MVC applications.
In this article, let's talk all about caching in general and integrating & working with Redis Cache in an ASP.NET Core application.
In this article, let's go deep dive into the concept of Micro ORM and how to work with Dapper with ASP.NET Core with examples