Konjection - ORM Helper using Knex and Objection
A tutorial on Konjection, a helper library built on Knex and Objection.js to simplify database operations and model creation in Node.js.
A tutorial on Konjection, a helper library built on Knex and Objection.js to simplify database operations and model creation in Node.js.
A tutorial on setting up and implementing many-to-many relationships in Ruby on Rails using a practical example with Investors and Companies.
A concise reference guide for Ruby on Rails developers covering CLI commands, Bundler, Active Record types, and model/route macros.
A guide to designing a data model for a Django survey application, covering models for Survey, Question, Option, and Submission.
A live coding session pairing with a new developer to work on a Ruby on Rails issue, covering fundamentals like Active Record and MVC.
A guide to translating NHibernate LINQ queries to SQL without executing them, using a custom ToSql() extension method for debugging.
A technical guide on configuring NHibernate to log generated SQL statements to ASP.NET Core's built-in logging system using interceptors.
Learn how Django uses models to store user data from forms into a relational database, covering setup and core concepts.
A tutorial on performing table joins and querying database models using the Fluent 4 ORM framework in Vapor for Swift.
Tutorial on configuring a Django blog application to use PostgreSQL for production, including installation, setup, and fixture management.
Learn how to use Django Debug Toolbar to identify and fix slow database queries in your Django application views.
A developer changes a Django model relationship from ForeignKey to ManyToManyField and fixes the resulting test errors.
A tutorial on connecting a MongoDB database to an Express.js application using Mongoose as the Object-Relational Mapping (ORM) library.
Explains how to use NHibernate's future results feature to batch database queries, reducing network traffic and improving performance.
Critique of the Active Record pattern, explaining its inefficiencies in data access and performance issues in applications and APIs.
A guide to creating and using abstract base classes in Django to reduce code repetition for common timestamp fields like 'added' and 'edited'.
A tutorial on using the Fluent ORM framework with PostgreSQL in Vapor 4 for server-side Swift development.
A technical guide comparing Django ORM GROUP BY queries with their SQL equivalents, aimed at developers comfortable with SQL.
A technical guide on implementing a repository-like querying interface directly within an Entity Framework Core DbContext, avoiding custom repository classes.