Satish Yadavread.satishyadav.com·Dec 18, 2024What's New in EF Core 9← Previous: What’s New in C# 13 Entity Framework Core 9 (EF9) continues to evolve as the go-to data access technology for .NET, delivering improvements in querying, modeling, migrations, cloud-native integrations, and performance. Building on EF Co...31 readsWhat's New in .NET 9.NET
Ugo Umeokeeurocode.hashnode.dev·Nov 29, 2024Quick Guide to Identity Endpoints in .NET 8+Identity management is a critical aspect of modern web applications, providing the infrastructure necessary for managing users, roles, authentication, and authorization. With .NET 8, Microsoft has further streamlined the process by introducing enhanc...C#
Freeman Madudilifreemancodz.hashnode.dev·Oct 17, 2024Handling Concurrency in Entity Framework Core: A Guide for SQLite and Relational DatabasesConcurrency issues can be a silent nemesis in any application dealing with data persistence. Recently, I found myself grappling with such issues while working on a .NET Core project using Entity Framework Core (EF Core) with a SQLite database. In thi...53 readsentity framework
Milan Jovanovićmilanjovanovic.hashnode.dev·Aug 10, 20245 EF Core Features You Need To KnowOkay, let's be honest. We all have a million things on our plates, and diving deep into every nook and cranny of EF Core might not be at the top of your priority list. But here's the deal: EF Core is powerful, and knowing a few key features can save ...151 readsefcore
Bezyl Mophat Otienomophat.hashnode.dev·Aug 4, 2024Mastering Concurrency Control with UnitOfWork Pattern in EF CoreIntroduction In today's fast-paced web applications, ensuring data integrity amidst concurrent operations is paramount. Entity Framework Core (EF Core) provides a robust framework for data access, but handling concurrency requires careful considerati...Databases
Tarik Shaikhtarikshaikh.hashnode.dev·Jul 7, 2024How to Use EF Core with Azure Cosmos DB for Database AccessEntity Framework core is an Object-Database mapper which is used to connect the application to the database. It has support for a number of databases, namely SQL Server, Oracle, MongoDB, Cosmos DB, etc. It is a lightweight version of its predecessor ....NET
Milan Jovanovićmilanjovanovic.hashnode.dev·Jun 22, 2024What You Need To Know About EF Core Bulk UpdatesWhen you're dealing with thousands or even millions of records, efficiency is king. That's where EF Core bulk update capabilities come into play. EF Core 7 introduced two powerful new methods, ExecuteUpdate and ExecuteDelete. They're designed to simp...51 reads.NET
Awdesh Sharmaawdesh.hashnode.dev·May 31, 2024Using Repository Pattern in .NET and EF CoreIntroduction The repository pattern is a popular way to achieve separation of concerns in .NET applications. It acts as a bridge between the data access layer and the business logic layer of an application. The aim of this blog post is to delve into ...134 reads.NET
Khalilmaniani.hashnode.dev·May 19, 2024Mapping an Entity to EntityDto and vice versa using AutoMapperIn modern application development, it's common to separate data transfer objects (DTOs) from the actual entities that represent data in the database. This separation allows for a cleaner architecture, where DTOs handle data transfer between the clien...aspcore
Milan Jovanovićmilanjovanovic.hashnode.dev·May 18, 2024EF Core Migrations: A Detailed GuideManaging database schemas as your applications grow can quickly become a headache. Manual changes are error-prone and time-consuming. This can easily lead to inconsistencies between development and production environments. I've seen these issues firs...ef core migrations