Skip to content

Commit add7b6a

Browse files
committed
words
1 parent dcf4325 commit add7b6a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

MyApp/_pages/autoquery/autogen.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Long time users of ServiceStack will know it's a staunch proponent of **code-fir
66

77
### AutoGen vs TypeScript Data Models
88

9-
This AutoGen-based approach uses runtime C# reflection and IL generation to inspect your RDBMS schema at startup and dynamically register AutoQuery CRUD Services for your existing tables. By contrast, the [`okai` TypeScript Data Models](/autoquery/okai-db) approach first exports DB metadata and converts it into TypeScript Data Models, then generates the AutoQuery CRUD APIs, RDBMS Data Models and DB migrations from those definitions.
9+
This AutoGen-based approach uses runtime C# reflection to inspect your RDBMS schema at startup and dynamically register AutoQuery CRUD Services for your existing tables. By contrast, the [`okai` TypeScript Data Models](/autoquery/okai-db) approach first exports DB metadata and converts it into TypeScript Data Models, then generates the AutoQuery CRUD APIs, RDBMS Data Models and DB migrations from those definitions.
1010

1111
<lite-youtube class="w-full mx-4 my-4" width="560" height="315" videoid="NaJ7TW-Q_pU" style="background-image: url('https://img.youtube.com/vi/NaJ7TW-Q_pU/maxresdefault.jpg')"></lite-youtube>
1212

MyApp/_pages/autoquery/okai-db.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ title: Generate CRUD APIs and UIs for existing DBs
44

55
### TypeScript Data Models vs AutoGen
66

7-
This TypeScript Data Models approach starts by exporting your existing RDBMS schema to JSON, converting it into TypeScript Data Models, then generating the AutoQuery CRUD APIs, RDBMS Data Models and DB migrations from those TypeScript definitions. By contrast, the [AutoQuery AutoGen CRUD Services](/autoquery/autogen) approach uses runtime C# reflection at startup to inspect your DB schema and dynamically register AutoQuery CRUD Services for your tables.
7+
This approach starts by exporting your existing RDBMS schema to JSON, converting it into TypeScript Data Models, then generating the AutoQuery CRUD APIs, Data Models and DB migrations from those TypeScript definitions. By contrast, the [AutoQuery AutoGen CRUD Services](/autoquery/autogen) approach uses runtime C# reflection to inspect your DB schema and dynamically register AutoQuery CRUD Services for your tables at startup.
88

99
## Generate CRUD APIs from TypeScript Data Models
1010

11-
A core feature of the [okai](/autoquery/okai-models) tool is the ability to convert [customized TypeScript Data Models](/autoquery/okai-models#customize-data-models) into C# AutoQuery CRUD APIs, RDBMS DataModel tables and DB Migrations.
11+
A core feature of the [okai](/autoquery/okai-models) tool is the ability to convert [customizable TypeScript Data Models](/autoquery/okai-models#customize-data-models) into C# AutoQuery CRUD APIs, RDBMS DataModel tables and DB Migrations.
1212

1313
This enables a flexible way to generate AutoQuery CRUD APIs for existing RDBMS tables, by:
1414

0 commit comments

Comments
 (0)