Mastering Restful API Design with ASP.NET Core: Best Practices for Robust and Scalable Services

In today’s interconnected digital landscape, Restful APIs are the backbone of countless applications, enabling seamless communication and data exchange between different systems. For developers building services with ASP.NET Core, adhering to best practices is crucial for creating robust, scalable, and maintainable APIs. This article summarizes key guidelines to help you design effective Restful APIs within … 

 

Integration Test In Asp.Net Core 6 Using SqlServer Image and TestContainers

This post is about writing integration tests and TestContainers. As you might know writing integration tests against the in-memory provider is a bad practice. Because it only works well with trivial solutions. Mostly because the in-memory API of IQueryProvider doesn’t match the LINQ query provider. Here’s a good article called “Avoid In-Memory Databases for Tests” …