Juan Miguel Nietojmnieto.hashnode.dev·Aug 23, 2024Understanding Entity Framework: Eager, Lazy, and Explicit LoadingThis topic will help us to optimize our loading of related data using Entity Framework Apis. Lazy Loading Ef core's default behavior Loads data when it's accessed for the first time Does not load child elements if you didn't ask for it Multiple q...Discussentity framework
Juan Miguel Nietojmnieto.hashnode.dev·Aug 12, 2024Change Tracking and some errors..I recently got a ticket to fix a module and I encounter an error related that can be solve by Change Tracker API. I'm glad that I encounter these kind of errors, it teaches me. It says entity type cannot be tracked because another instance with the ...Discuss·30 readsEntity states
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·146 readsefcore
Abdullah Sajjadblog.abdullahsajjad.me·Aug 3, 2024Entity Framework Core: Getting Started in .NETEntity Framework Core (EF Core) is a modern, open-source, and cross-platform version of the popular Entity Framework data access technology. It serves as an object-relational mapper (O/RM), enabling .NET developers to work with a database using .NET ...Discuss·65 readsEntity Framework Core: Up and RunningC#
Carlos M. Hernándezcmhernandezdel.hashnode.dev·Jul 18, 2024Utilizando funciones propias en lambdas de Entity Framework (core)En este artículo se trata cómo utilizar funciones personalizadas en lambdas de Entity Framework Core. Nota: se puede encontrar el repositorio con el código aquí El problema A veces, sobre todo cuando estamos utilizando DDD, sería ideal poder utilizar...Discussentity framework
Opaluwa Emidowo-ojotech-on-diapers.hashnode.dev·Jul 11, 2024Simplifying Database Access in C# with Entity Framework CoreWe have finally reached the fifth article in our "Mastering C#" series, and it has been an incredibly enlightening journey. I hope you have gained as much from it as I have. In today's article, we will explore how to manage databases easily in C# usi...Discuss·20 likesDatabases
Shoyeabshoyeab.hashnode.dev·Jul 10, 2024Setting Up an ASP.NET Core Application with Entity Framework: A Beginner's GuideIntroduction This guide will take you through the process of setting up an ASP.NET Core application using Entity Framework (EF) for database management. We'll cover creating models, defining relationships, managing migrations, seeding data, and ensur...Discuss·10 likesAspnetcore
Shoyeabshoyeab.hashnode.dev·Jul 7, 2024Understanding Entity Relationships in C#: One-to-One, One-to-Many, and Many-to-Many ExplainedWe have different types of Entity Relationships: One to One One to Many Many to Many One-to-One Relationship Example: A person has one passport, and a passport is assigned to one person. Entities: Person Passport Schema: public class Person ...DiscussC#
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
Gabriel Ortizminimaltools.hashnode.dev·Jul 2, 2024Dynamic Schema and Connection String Changes with Entity Framework in NET Framework 4.8Source Code: GitHub In this article, we will explore how to create a connection that can be modified at runtime with Entity Framework in a desktop application based on .NET Framework 4.8. Database Structure The previous image provides an overview of...Discuss·56 readsC#