Alexandru Prodancodecraftsymphony.com·Dec 1, 2023Introduction to EF Core Relationships ModelingIntroduction This article explains the necessary terms used while designing a data model and introduces you to different ways to configure relationships in EF Core. Furthermore, the article distinguishes the three methods for configuring EF Core rela...DiscussEF Coreefcore
Milan Jovanovićmilanjovanovic.hashnode.dev·Nov 18, 2023How To Use EF Core InterceptorsEF Core is my favorite ORM for .NET applications. Yet, its many fantastic features sometimes go unnoticed. For example, query splitting, query filters, and interceptors. EF interceptors are interesting because you can do powerful things with them. Fo...Discuss·65 reads.NET
Sudi Davidsudi.dev·Nov 14, 2023Adding Entity Framework Core and SQLiteBuilding upon our introduction to Minimal APIs, let's proceed to the next level by incorporating a data source to store and retrieve recipe information. We'll be using SQLite as our database and Entity Framework Core to interact with it. To get start...Discuss·1 likeefcore
Bug And Fixbugandfix.com·Sep 14, 2023DDD in EF 8 - Complex types as value objectsYoutube Video https://youtu.be/gZ1XwBQ0E6MDiscuss·32 readsdotnet
Alexandru Prodancodecraftsymphony.com·Sep 12, 2023EF Core PaginationWhat is Pagination? Pagination is the process of retrieving results in pages, rather than all at once. This process is extremely useful for large datasets because it improves the overall performance of the system, by fetching a limited number of item...Discuss·117 readsEF Coreefcore
Milan Jovanovićmilanjovanovic.hashnode.dev·Sep 9, 2023Solving Race Conditions With EF Core Optimistic LockingHow often do you think about concurrency conflicts when writing code? You write the code for a new feature, confirm that it works, and call it a day. But one week later, you find out you introduced a nasty bug because you didn't think about concurren...Discuss·1 like·93 reads.NET
Bug And Fixbugandfix.com·Sep 4, 2023Delete in EF 8 !Deleting a record efficiently using Entity Framework (EF) involves a few key considerations to minimize unnecessary database operations and improve performance. https://youtu.be/gt2PUWa340I public async void DeleteStudent(int Id) { UniverSi...Discuss·67 readsefcore
Bug And Fixbugandfix.com·Sep 3, 2023EF8, Raw SQL, but Dapper is FASTER !!!Dapper and Entity Framework (EF) are two different Object-Relational Mapping (ORM) libraries for .NET, and their performance characteristics can vary depending on the specific use case and how they are used. It's important to note that the performanc...Discuss·129 readsefcore
Pritom Purkayastapritom.hashnode.dev·Aug 6, 2023DbContext, Dbset Mocking - C# made easyIntroduction Entity Framework Core is a popular Object-Relational Mapping (ORM) framework used by so many .NET developers for interacting with databases. One of the challenges we as developers face while unit testing code that interacts with database...Discuss·42 readsefcore
Saruf Ratulsaruf.hashnode.dev·Aug 3, 2023Connecting your ASP.NET core application to a local instance of SQLServerIt is no news that one of the best databases to use for asp.net/.net development is SQL Server because of its smooth integration provided with .net(ASP.NET/UWP/Winforms/Xamarin) applications. Let's get to the process of integrating a local Instance o...Discussasp.net core