Rethinking Object-Relational Mapping in Modern Software Development

  • Object-Relational Mapping (ORM) promises clean database-to-object mapping but often complicates code.
  • Model-View-Controller (MVC) pattern can lead to scalability issues and complex, unmanageable code.
  • Feature-driven architecture is recommended for better organization and microservices compatibility.
  • Choosing technologies should focus on reducing repetitive tasks without hindering complex features.
  • PlatformaticDB offers a balance between ease of use for simple tasks and flexibility for complex requirements.

Object-Relational Mapping (ORM) tools have long been a staple in software development, promising to seamlessly translate data between database tables and programming objects. The allure of this metaphor is appealing: by following certain rules, developers can achieve a clean, organized, and efficient codebase. However, the reality of implementing ORMs often falls short of these promises, leading to several challenges and pitfalls.

One of the fundamental issues with ORMs is their inherent complexity. While they are designed to simplify database interactions, they often introduce a layer of abstraction that can obscure the underlying processes. This abstraction can lead to inefficiencies, particularly when developers must resort to writing custom SQL to achieve specific functionality that the ORM cannot handle effectively. The result is a disconnect between what is written in the code and what is executed in the database, leading to potential performance bottlenecks and debugging difficulties.

A significant factor contributing to these challenges is the Model-View-Controller (MVC) pattern. This architecture, once heralded as a revolutionary way to organize software applications, can quickly become cumbersome. In an MVC setup, applications are divided into three components: models, views, and controllers. While this sounds neat in theory, in practice, it can lead to an overwhelming number of models, each responsible for data persistence, business logic, and in-memory data management. This violates the single responsibility principle and can result in a tangled web of dependencies and spaghetti code.

As software projects grow, especially in large teams, the MVC pattern can hinder scalability. With potentially thousands of models to manage, the system's complexity balloons, making it difficult to maintain and extend. This is where the concept of feature-driven architecture comes into play. Instead of organizing code around models and controllers, developers are encouraged to structure their applications based on specific features or components. This approach not only aligns the codebase more closely with business requirements but also facilitates a smoother transition to microservices architectures when the need arises.

In choosing the right tools and technologies for a project, developers face a critical decision: should they optimize for speed and ease of initial development or for long-term maintainability and scalability? ORMs can be useful at the beginning of a project for handling simple CRUD operations, but they often become a hindrance when scaling to more complex features. This dilemma is reminiscent of the Pareto principle, where a small percentage of causes are responsible for a large percentage of the effects. In software terms, this means a few complex features can consume most of the development effort, while simpler ones are easily handled.

PlatformaticDB offers an intriguing solution to this conundrum. Built on top of Fastify, it provides a framework that simplifies initial setup and development. Developers define their database schema and apply migrations, and PlatformaticDB handles the rest, including generating routes and configurations. This setup significantly reduces the amount of boilerplate code developers need to write, thus minimizing the risk of introducing bugs and technical debt.

Moreover, PlatformaticDB allows for customization and flexibility. Developers can extend the generated code with custom JavaScript logic, ensuring they can address unique business needs without being constrained by the limitations of the ORM. By structuring applications around features rather than models, developers maintain greater control over their codebase, enabling easier maintenance and evolution over time.

Another advantage of PlatformaticDB is its emphasis on developer-friendly features. It supports modern web standards like REST and GraphQL, making it compatible with a wide range of client-side frameworks and tools. As projects evolve and grow more complex, PlatformaticDB provides the necessary tools to manage this complexity without sacrificing performance or scalability.

In selecting technologies for a project, it's crucial to consider not only how they will perform in the short term but also their implications for long-term development. While ORMs and MVC frameworks have their place, developers must critically assess their suitability for the task at hand. By embracing feature-driven architecture and tools like PlatformaticDB, teams can build applications that are both robust and adaptable, capable of meeting today's needs while being prepared for tomorrow's challenges.

Ultimately, the goal is to create software that is both easy to develop and maintain. By focusing on reducing repetitive tasks and ensuring flexibility for complex features, developers can achieve a balance that leads to successful, sustainable projects. In this way, the lessons learned from the past can inform better practices for the future, paving the way for more efficient and effective software development.

08 Oct, 2024

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

It's a Jungle Out There: What's Really Going on Inside Your Node_Modules Folder
Node Congress 2022Node Congress 2022
26 min
It's a Jungle Out There: What's Really Going on Inside Your Node_Modules Folder
Top Content
The talk discusses the importance of supply chain security in the open source ecosystem, highlighting the risks of relying on open source code without proper code review. It explores the trend of supply chain attacks and the need for a new approach to detect and block malicious dependencies. The talk also introduces Socket, a tool that assesses the security of packages and provides automation and analysis to protect against malware and supply chain attacks. It emphasizes the need to prioritize security in software development and offers insights into potential solutions such as realms and Deno's command line flags.
Towards a Standard Library for JavaScript Runtimes
Node Congress 2022Node Congress 2022
34 min
Towards a Standard Library for JavaScript Runtimes
Top Content
There is a need for a standard library of APIs for JavaScript runtimes, as there are currently multiple ways to perform fundamental tasks like base64 encoding. JavaScript runtimes have historically lacked a standard library, causing friction and difficulty for developers. The idea of a small core has both benefits and drawbacks, with some runtimes abusing it to limit innovation. There is a misalignment between Node and web browsers in terms of functionality and API standards. The proposal is to involve browser developers in conversations about API standardization and to create a common standard library for JavaScript runtimes.
ESM Loaders: Enhancing Module Loading in Node.js
JSNation 2023JSNation 2023
22 min
ESM Loaders: Enhancing Module Loading in Node.js
ESM Loaders enhance module loading in Node.js by resolving URLs and reading files from the disk. Module loaders can override modules and change how they are found. Enhancing the loading phase involves loading directly from HTTP and loading TypeScript code without building it. The loader in the module URL handles URL resolution and uses fetch to fetch the source code. Loaders can be chained together to load from different sources, transform source code, and resolve URLs differently. The future of module loading enhancements is promising and simple to use.
Out of the Box Node.js Diagnostics
Node Congress 2022Node Congress 2022
34 min
Out of the Box Node.js Diagnostics
This talk covers various techniques for getting diagnostics information out of Node.js, including debugging with environment variables, handling warnings and deprecations, tracing uncaught exceptions and process exit, using the v8 inspector and dev tools, and generating diagnostic reports. The speaker also mentions areas for improvement in Node.js diagnostics and provides resources for learning and contributing. Additionally, the responsibilities of the Technical Steering Committee in the TS community are discussed.
Node.js Compatibility in Deno
Node Congress 2022Node Congress 2022
34 min
Node.js Compatibility in Deno
Deno aims to provide Node.js compatibility to make migration smoother and easier. While Deno can run apps and libraries offered for Node.js, not all are supported yet. There are trade-offs to consider, such as incompatible APIs and a less ideal developer experience. Deno is working on improving compatibility and the transition process. Efforts include porting Node.js modules, exploring a superset approach, and transparent package installation from npm.
Multithreaded Logging with Pino
JSNation Live 2021JSNation Live 2021
19 min
Multithreaded Logging with Pino
Top Content
Today's Talk is about logging with Pino, one of the fastest loggers for Node.js. Pino's speed and performance are achieved by avoiding expensive logging and optimizing event loop processing. It offers advanced features like async mode and distributed logging. The use of Worker Threads and Threadstream allows for efficient data processing. Pino.Transport enables log processing in a worker thread with various options for log destinations. The Talk concludes with a demonstration of logging output and an invitation to reach out for job opportunities.

Workshops on related topic

How to Solve Real-World Problems with Remix
Remix Conf Europe 2022Remix Conf Europe 2022
195 min
How to Solve Real-World Problems with Remix
Featured Workshop
Michael Carter
Michael Carter
- Errors? How to render and log your server and client errorsa - When to return errors vs throwb - Setup logging service like Sentry, LogRocket, and Bugsnag- Forms? How to validate and handle multi-page formsa - Use zod to validate form data in your actionb - Step through multi-page forms without losing data- Stuck? How to patch bugs or missing features in Remix so you can move ona - Use patch-package to quickly fix your Remix installb - Show tool for managing multiple patches and cherry-pick open PRs- Users? How to handle multi-tenant apps with Prismaa - Determine tenant by host or by userb - Multiple database or single database/multiple schemasc - Ensures tenant data always separate from others
Relational Database Modeling for GraphQL
GraphQL Galaxy 2020GraphQL Galaxy 2020
106 min
Relational Database Modeling for GraphQL
Top Content
WorkshopFree
Adron Hall
Adron Hall
In this workshop we'll dig deeper into data modeling. We'll start with a discussion about various database types and how they map to GraphQL. Once that groundwork is laid out, the focus will shift to specific types of databases and how to build data models that work best for GraphQL within various scenarios.
Table of contentsPart 1 - Hour 1      a. Relational Database Data Modeling      b. Comparing Relational and NoSQL Databases      c. GraphQL with the Database in mindPart 2 - Hour 2      a. Designing Relational Data Models      b. Relationship, Building MultijoinsTables      c. GraphQL & Relational Data Modeling Query Complexities
Prerequisites      a. Data modeling tool. The trainer will be using dbdiagram      b. Postgres, albeit no need to install this locally, as I'll be using a Postgres Dicker image, from Docker Hub for all examples      c. Hasura
Node.js Masterclass
Node Congress 2023Node Congress 2023
109 min
Node.js Masterclass
Top Content
Workshop
Matteo Collina
Matteo Collina
Have you ever struggled with designing and structuring your Node.js applications? Building applications that are well organised, testable and extendable is not always easy. It can often turn out to be a lot more complicated than you expect it to be. In this live event Matteo will show you how he builds Node.js applications from scratch. You’ll learn how he approaches application design, and the philosophies that he applies to create modular, maintainable and effective applications.

Level: intermediate
Build and Deploy a Backend With Fastify & Platformatic
JSNation 2023JSNation 2023
104 min
Build and Deploy a Backend With Fastify & Platformatic
WorkshopFree
Matteo Collina
Matteo Collina
Platformatic allows you to rapidly develop GraphQL and REST APIs with minimal effort. The best part is that it also allows you to unleash the full potential of Node.js and Fastify whenever you need to. You can fully customise a Platformatic application by writing your own additional features and plugins. In the workshop, we’ll cover both our Open Source modules and our Cloud offering:- Platformatic OSS (open-source software) — Tools and libraries for rapidly building robust applications with Node.js (https://oss.platformatic.dev/).- Platformatic Cloud (currently in beta) — Our hosting platform that includes features such as preview apps, built-in metrics and integration with your Git flow (https://platformatic.dev/). 
In this workshop you'll learn how to develop APIs with Fastify and deploy them to the Platformatic Cloud.
Building a Hyper Fast Web Server with Deno
JSNation Live 2021JSNation Live 2021
156 min
Building a Hyper Fast Web Server with Deno
WorkshopFree
Matt Landers
Will Johnston
2 authors
Deno 1.9 introduced a new web server API that takes advantage of Hyper, a fast and correct HTTP implementation for Rust. Using this API instead of the std/http implementation increases performance and provides support for HTTP2. In this workshop, learn how to create a web server utilizing Hyper under the hood and boost the performance for your web apps.
0 to Auth in an Hour Using NodeJS SDK
Node Congress 2023Node Congress 2023
63 min
0 to Auth in an Hour Using NodeJS SDK
WorkshopFree
Asaf Shen
Asaf Shen
Passwordless authentication may seem complex, but it is simple to add it to any app using the right tool.
We will enhance a full-stack JS application (Node.JS backend + React frontend) to authenticate users with OAuth (social login) and One Time Passwords (email), including:- User authentication - Managing user interactions, returning session / refresh JWTs- Session management and validation - Storing the session for subsequent client requests, validating / refreshing sessions
At the end of the workshop, we will also touch on another approach to code authentication using frontend Descope Flows (drag-and-drop workflows), while keeping only session validation in the backend. With this, we will also show how easy it is to enable biometrics and other passwordless authentication methods.
Table of contents- A quick intro to core authentication concepts- Coding- Why passwordless matters
Prerequisites- IDE for your choice- Node 18 or higher