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...556 readsefcore
Francis Rousseaufrancis-dev.hashnode.dev·Dec 21, 2022Entity framework tracking objectsA tracking object exists when EF core will keep information about the entity in its change tracker. For an entity to be tracked, it must at least have a primary key. By default, if you do a query to the database and it returns an entity, it will keep...EF