From 7b2b48347e1c86c4274403563d2098a52bd30550 Mon Sep 17 00:00:00 2001 From: Erik Ejlskov Jensen Date: Thu, 24 Oct 2024 08:42:20 +0200 Subject: [PATCH] fix typos --- samples/efcpt-config.schema.json | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/samples/efcpt-config.schema.json b/samples/efcpt-config.schema.json index 098637749..7ba760a2d 100644 --- a/samples/efcpt-config.schema.json +++ b/samples/efcpt-config.schema.json @@ -89,14 +89,31 @@ }, "CodeGeneration": { "type": "object", + "title": "Options for code generation", + "required": [ + "enable-on-configuring", + "type", + "use-database-names", + "use-data-annotations", + "use-nullable-reference-types", + "use-inflector", + "use-legacy-inflector", + "use-many-to-many-entity", + "use-t4", + "remove-defaultsql-from-bool-properties", + "soft-delete-obsolete-files", + "use-alternate-stored-procedure-resultset-discovery" + ], "properties": { "enable-on-configuring": { - "type": "boolean" + "type": "boolean", + "title": "Add OnConfiguring method to the DbContext" }, "type": { "default": "all", "enum": [ "all", "dbcontext", "entities" ], - "type": "string" + "type": "string", + "title": "Type of files to generate" }, "use-database-names": { "type": "boolean" @@ -148,11 +165,11 @@ "generate-mermaid-diagram": { "type": "boolean" }, - "use-decimal-data-annotation-for-sproc-results" { + "use-decimal-data-annotation-for-sproc-results": { "type": "boolean", "default": true }, - "use-prefix-navigation-naming" { + "use-prefix-navigation-naming": { "type": "boolean" } }