Feb 3 · 13 min read · Use EF Core when you want a full ORM that boosts productivity and long-term maintainability (LINQ, change tracking, migrations, cross-database providers). Use Dapper when you want maximum SQL control and minimal overhead, especially for read-heavy or...
Join discussion
Oct 11, 2023 · 3 min read · In C# application development, retrieving data from relational databases and mapping it to object hierarchies is a common task. Dapper, a popular micro-ORM (Object-Relational Mapping) library, streamlines this process and provides a powerful feature ...
Join discussion
Sep 14, 2023 · 3 min read · Introduction Dapper is a lightweight and efficient Object-Relational Mapping (ORM) library for C#. Unlike other ORMs that can be complex and require significant configuration, Dapper is designed to be simple and straightforward. It provides a conveni...
Join discussion
Aug 16, 2023 · 2 min read · Dapper is a popular lightweight Object-Relational Mapping (ORM) library for .NET applications. It was developed by Stack Overflow to provide a simple and efficient way to work with databases while minimizing the performance overhead typically associa...
Join discussionAug 12, 2023 · 5 min read · Dapper is a lightweight object-relational mapper in .NET. It's popular because it's easy to use and fast at the same time. Dapper extends the IDbConnection interface with methods for sending SQL queries to the database. But, because of the nature of ...
Join discussion
Feb 9, 2023 · 6 min read · The following article is part of a series of articles that will help you build a DAO on the Flow blockchain using Cadence. As the Flow ecosystem continues to grow, the need to assuring contract and external apps interoperability increases. The develo...
Join discussion
Jan 15, 2023 · 10 min read · Recently, I've come across the news that EF Core 8.0 has introduced a new feature for querying unmapped data. This sounds like an exciting development and brings to mind a challenge I faced last year. I had to query unmapped data using EF Core and, a...
Join discussionJan 13, 2023 · 5 min read · The Niftory team wishes you a happy new year! We hope you got a chance to rejuvenate towards the end of 2022 and are raring to conquer 2023 with vigor, as we are. Our team shipped several milestone projects in Q4, and we've got some exciting work und...
Join discussion
Nov 12, 2022 · 8 min read · Heredia, Costa Rica, 2022-11-12 2023-08-19 UPDATE: I see this article trending a bit, and I wonder if you would also like to do this in Node projects. If yes, refer to the wj-config package. This configuration package mimics the capabilities of .N...
Join discussion