2 Repos
Modular structural patterns that allow SQL queries to be built through chainable method calls.
Distinct from Query Generation Patterns: Focuses on the chainable modifier pattern for query construction rather than general programmatic generation algorithms.
Explore 2 awesome GitHub repositories matching data & databases · Chainable Modifier Patterns. Refine with filters or upvote what's useful.
sqlboiler is a database-first ORM generator for Go that analyzes an existing database schema to produce strongly typed structures and query helpers. It functions as a schema-driven code generator, transforming database tables and relationships into executable Go source code. The project distinguishes itself through a type-safe query builder that uses chainable modifiers to construct SQL statements, eliminating the need for raw string concatenation. It utilizes customizable text templates to generate source code, allowing for the aliasing of schema entities and the creation of custom templates
Provides a type-safe query builder using a chainable modifier pattern to construct SQL statements without raw strings.
Tortoise ORM is an asynchronous object-relational mapper for Python that mirrors Django's model and queryset API while running on asyncio. It defines database tables as Python classes with typed fields and supports foreign key, many-to-many, and one-to-one relations, providing a chainable query API for filtering, annotating, grouping, and prefetching related objects without blocking the event loop. The ORM includes a built-in migration engine that detects model changes, generates migration files, and applies or reverts schema changes through a command-line tool. It connects to PostgreSQL, MyS
Provides a chainable query builder for filtering, ordering, and aggregating records.