Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!
Note You can check other posts on my personal website: https://hbolajraf.net ...
Pagination is a crucial aspect of application development, especially when dealing with large...
Using Entity framework we achieve database connectivity. ORM (Object Relational Mapping) To...
Pagination refers to the process of dividing a large dataset into smaller, manageable chunks, which...
In this article, we will explore Entity Framework Core, tracing its evolution from EF6 to EF Core,...
Introduction Entity Framework is a popular Object-Relational Mapper (ORM) for .NET, which...
Note You can check other posts on my personal website: https://hbolajraf.net ...
Dapper is a lightweight, high-performance ORM for .NET. It is widely used because of its simplicity...
Entity Framework Core: Code-First Approach and CRUD Operations Entity Framework (EF) Core...
Using a read-only DbContext in Entity Framework (EF) can provide several benefits, especially when...
In this post, we continue to explore ways to free your application from being tightly bound to the...
The Good Part Entity Framework Core (EF Core) is a popular Object-Relational Mapper (ORM)...
The .NET 8-EFCore-GenericRepository on GitHub is a comprehensive library designed to simplify...
In this tutorial, I've explained how to migrate and call scalar functions from Entity Framework...
🛠 Liked this post? I now share all my content on Substack — real-world .NET, AI, and scalable...
Intro This post is about the System.InvalidOperationException: This SqlTransaction has...
I am looking for way to add hints for joins. Our app uses EF, I have found one query which executes 1...
Okay, let's be honest. We all have a million things on our plates, and diving deep into every nook...
I just like this so much! Experimenting with ef-core just got so much simpler. With a simple script...
EF9 has a bug and gives an exception "The given key 'EmptyProjectionMember' was not present in the...
Listen to the Compiler There are certain situations in C# where you have nullable...
I've built an application and, like any lazy dev out there, I focused on the business logic, the...
I ran a full BenchmarkDotNet suite comparing: EF Core (Tracked ✅ / NoTracking ❌) Dapper (Raw SQL,...
In a .NET Web API project, when we have to perform data processing tasks in the background, such as...
1️⃣ 𝗜𝗻𝗶𝘁𝗶𝗮𝗹 𝗗𝗲𝘀𝗶𝗴𝗻 𝗜𝘀𝘀𝘂𝗲: The ExpenseCategory model was used as a junction table, creating a...
It is very common on applications to have entities that are related under Many to Many relationship...
1) To begin with the Code First Approach we need the below Nuget packages in our...
Implementing Domain-Driven Design with C# and Entity Framework When building complex...
So you've added your new Entity Framework DbContext to the Startup ConfigureServices method,...
Note You can check other posts on my personal website: https://hbolajraf.net Entity...