How to Add Extended Fields to Entities Without Modifying Tables
Video Demo Based on the NopOrm engine built into the Nop platform, it’s very convenient to add extended properties to any entity. These properties support quer...
Video Demo Based on the NopOrm engine built into the Nop platform, it’s very convenient to add extended properties to any entity. These properties support quer...
The real problem: multiple OneToMany JOINs explode rows JOINing multiple OneToMany relations multiplies the SQL result set cartesian product. Example: 3 images...
Topics Covered✅ - Understanding what an ORM actually solves - Defining a database schema using Prisma - Generating type‑safe database clients - Performing CRUD...
Introduction The N+1 problem is one of the most common causes of high database load in Spring Boot applications. In this article, I’ll show you how to systemat...
Overview Kepler.Core is an EF Core extension that lets you improve performance by selecting only the fields you need. It supports flexible filtering, exclusion...
Introduction Building production‑ready backends shouldn’t feel like starting from scratch every time. Frameworks like Django or Rails give you scaffolding—inst...
Introduction With the introduction of Java Records officially in Java 16, developers finally got a concise way to create immutable data‑carrier classes without...
Reloading Models with fresh Laravel's fresh method allows you to reload a model or an entire collection from the database, ensuring you are working with the mo...
The Plan For release 0.4, I decided to explore three things I kept hearing about but never really took the time to understand properly. The plan was to dive in...
Short Summary of SQLAlchemy SQLAlchemy provides an Engine, which manages the database connection pool, and a Session, through which SQL queries are executed. E...
This is Day 8 of Building SaaS Solo – Design, Implementation, and Operation Advent Calendar 2025. > The approach described in this article is something I arrive...
!Cover image for Why would you ever use an ORM?https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to...