You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "The 'Relationship' object enables the definition of an entity framework (EF) model relationship.",
593
+
"properties": {
594
+
"name": {
595
+
"type": "string",
596
+
"title": "The name of the primary table of the query."
597
+
},
598
+
"schema": {
599
+
"type": "string",
600
+
"title": "The schema name of the primary table of the view.",
601
+
"description": "Defaults to 'CodeGeneration.Schema'."
602
+
},
603
+
"type": {
604
+
"type": "string",
605
+
"title": "The relationship type between the parent and child (self).",
606
+
"description": "Defaults to 'OneToMany'.",
607
+
"enum": [
608
+
"OneToMany"
609
+
]
610
+
},
611
+
"foreignKeyColumns": {
612
+
"type": "array",
613
+
"title": "The list of 'Column' names to be included in the underlying generated output.",
614
+
"items": {
615
+
"type": "string"
616
+
}
617
+
},
618
+
"onDelete": {
619
+
"type": "string",
620
+
"title": "The operation applied to dependent entities in the relationship when the principal is deleted or the relationship is severed.",
621
+
"description": "Defaults to 'NoAction'. See https://learn.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.deletebehavior for more information.",
622
+
"enum": [
623
+
"NoAction",
624
+
"Cascade",
625
+
"ClientCascade",
626
+
"ClientNoAction",
627
+
"ClientSetNull",
628
+
"Restrict",
629
+
"SetNull"
630
+
]
631
+
},
632
+
"autoInclude": {
633
+
"type": "boolean",
634
+
"title": "Indicates whether to automatically include navigation to the property.",
635
+
"description": "Defaults to 'None'."
636
+
},
637
+
"propertyName": {
638
+
"type": "string",
639
+
"title": "The corresponding property name within the entity framework (EF) model.",
640
+
"description": "Defaults to 'Name' using the 'CodeGeneration.AutoDotNetRename' option."
641
+
},
642
+
"efModelName": {
643
+
"type": "string",
644
+
"title": "The corresponding entity framework (EF) model name (.NET Type).",
645
+
"description": "Defaults to 'Name' using the 'CodeGeneration.AutoDotNetRename' option."
646
+
}
647
+
},
648
+
"required": [
649
+
"name"
650
+
]
651
+
},
574
652
"Query": {
575
653
"type": "object",
576
654
"title": "'Query' object (database-driven)",
@@ -583,7 +661,7 @@
583
661
"schema": {
584
662
"type": "string",
585
663
"title": "The schema name of the primary table of the view.",
586
-
"description": "Defaults to 'CodeGeneration.dbo'."
664
+
"description": "Defaults to 'CodeGeneration.Schema'."
0 commit comments