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...DiscussC#
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...Discuss·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 ...Discuss·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...DiscussDatabases
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 ...Discuss.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...Discuss·49 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 ...Discuss·131 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...Discussaspcore
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...Discussef core migrations
Monday Labsmondaylabs.xyz·Apr 30, 2024Enhancing Database Security with Parameterized Queries in EF CoreWhen developers are taught how to write database queries, they should be told to use prepared statements with variable binding (aka parameterized queries). - OWASP SQL Injection attacks are a real threat to our database. They involve sneaking in mali...Discuss·27 readsefcore