Getting Started with EF Core: A Comprehensive Guide Part 1

Table of Contents Introduction Overview of EF Core Key Features Getting Started with EF Core Step 1: Install EF Core Packages Step 2: Define a Database Context Step 3: Configure Dependency Injection Defining Relationships in EF Core One-to-One Relationship One-to-Many Relationship Many-to-Many Relationship EF Core vs Dapper Architectural Perspective Conclusion Introduction Entity Framework Core (EF …

Continue reading Getting Started with EF Core: A Comprehensive Guide Part 1

Cache-aside pattern using ASP.NET Core and Azure Redis Cache

In the software development cycle, often the focus is on the performance of the application. There are many ways to improve the performance and one of the most commonly used pattern to improve the performance in modern cloud application is Cache-aside pattern. In this post, I will describe briefly about Cache-aside pattern and it's implementation …

Continue reading Cache-aside pattern using ASP.NET Core and Azure Redis Cache

Query and Mutation in GraphQL- Part two

Recap In the previous article of the GraphQL series, we discussed the introduction of GraphQL and Pros & Cons of using GraphQL. If you haven’t read my previous articles then I highly encourage you to do so https://dotnetintellect.com/2020/07/29/introduction-to-graphql/ I believe you have prior understanding of EF Core and we'll be concentrating only on GraphQL concepts. …

Continue reading Query and Mutation in GraphQL- Part two