2 个仓库
Automatic generation of code to navigate table associations based on foreign key constraints.
Distinct from Foreign Key Constraints: Focuses on the ORM mapping and getter generation for navigation, not the database-level enforcement of constraints.
Explore 2 awesome GitHub repositories matching data & databases · Relationship Mapping. 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
Generates dedicated getter methods and mapping logic based on database foreign key constraints to navigate table associations.
This tool is an automated backend code generator that creates administrative dashboards by inspecting existing relational database structures. It functions as a schema-driven scaffolding utility, parsing table definitions and foreign key constraints to produce functional server-side controllers and user interfaces for record management. The project distinguishes itself through static source code ejection, which outputs human-readable files that developers can manually modify or extend. By analyzing database metadata, it automatically maps relational data to intuitive selection components and
Automatically generates code to navigate and display table associations based on foreign key constraints.