Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ committed Oct 24, 2024
1 parent 78daae6 commit 7b2b483
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions samples/efcpt-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
}
}
Expand Down

0 comments on commit 7b2b483

Please sign in to comment.