Explore some of the best practices of ASP.NET Core Blazor to optimize your architecture and enhance performance, ensuring your applications are efficient and user-friendly.
This article builds a simple application to demonstrate the concepts covered and uses PostgreSQL as the database to store data and dotConnect for PostgreSQL as the data provider for PostgreSQL.
This article discusses how we can build a custom class to intercept HTTP 400 and 404, and 500 responses and return customized responses from the action methods. This article builds a simple application to demonstrate the concepts covered and uses PostgreSQL as the database.
This article builds a simple data-centric application and demonstrates how to disallow data access to certain IP Addresses. In this article, we’ll connect to PostgreSQL using dotConnect for PostgreSQL, a high-performance and enhanced data provider built on top of ADO.NET that can work on connected and disconnected modes.
ASP.Net Core is a popular web development framework with many features for building web modern web applications. One of its many great features is the ability to implement health checks to determine the health of APIs, databases, etc. Health checks can help you to know if connections to the database, third-party components, etc., are healthy, degraded, or unhealthy.
Consider a scenario where you already have an API live and being used by users. Let's assume you want to enhance existing API capabilities while maintaining existing functionality. While some users may still use the older API, others prefer a version with new or improved features. So, you need a way to build and manage multiple versions of your APIs. This strategy is also known as API versioning.
Entity Framework Core is an open-source, popular, lightweight, and flexible cross-platform ORM. In Entity Framework Core (also called EF Core), a Db context is...
Throttling and rate limiting restrict API access, but they serve different purposes. While rate limiting can limit API usage to ensure stability, throttling prevents...