Skip to content

support foreign key delete rule options#435

Open
Strandedpirate wants to merge 3 commits intoloresoft:masterfrom
Strandedpirate:feature/support-cascade-delete
Open

support foreign key delete rule options#435
Strandedpirate wants to merge 3 commits intoloresoft:masterfrom
Strandedpirate:feature/support-cascade-delete

Conversation

@Strandedpirate
Copy link

@Strandedpirate Strandedpirate commented Apr 8, 2023

This adds the ability to define global behaviors to support foreign key delete rules such as Cascade, Set Null, No Action, and Set Default.

EFG Configuration

mapping:
  namespace: "{Project.Namespace}.Domain.EntityConfiguration"
  directory: '{Project.Directory}\My.Domain\EntityConfiguration'
  document: false
  globalRelationshipCascadeDeleteBehavior: Cascade
  globalRelationshipSetNullDeleteBehavior: ClientSetNull
  globalRelationshipNoActionDeleteBehavior: NoAction

Output

builder.HasOne(t => t.Key)
    .WithMany(t => t.KeyTags)
    .HasForeignKey(d => d.KeyId)
    .HasConstraintName("FK_KeyTag__Key_KeyId")
    .OnDelete(DeleteBehavior.Cascade);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant