2 Repos
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.
Dieses Tool ist ein automatisierter Backend-Code-Generator, der administrative Dashboards durch die Inspektion bestehender relationaler Datenbankstrukturen erstellt. Es fungiert als schema-gesteuertes Scaffolding-Dienstprogramm, das Tabellendefinitionen und Fremdschlüssel-Constraints analysiert, um funktionale serverseitige Controller und Benutzeroberflächen für die Datensatzverwaltung zu erzeugen. Das Projekt zeichnet sich durch statisches Source-Code-Ejection aus, das menschenlesbare Dateien ausgibt, die Entwickler manuell modifizieren oder erweitern können. Durch die Analyse von Datenbank-Metadaten werden relationale Daten automatisch auf intuitive Auswahlkomponenten abgebildet und rohe numerische Identifikatoren durch menschenlesbare Labels ersetzt, wodurch sichergestellt wird, dass die generierten administrativen Ansichten über verschiedene Bildschirmgrößen hinweg konsistent und responsiv bleiben. Die generierte Ausgabe enthält die notwendige serverseitige Logik und Dashboard-Layouts, die zur Verwaltung von Datenbankeinträgen erforderlich sind. Da das Tool Standard-Quelldateien anstelle undurchsichtiger Binärdateien erzeugt, ermöglicht es eine vollständige Anpassung der zugrunde liegenden Controller und Ansichten, um spezifische Projektanforderungen zu erfüllen.
Automatically generates code to navigate and display table associations based on foreign key constraints.