Skip to content

support foreign key delete rule options#435

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

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

Conversation

@Strandedpirate

@Strandedpirate Strandedpirate commented Apr 8, 2023

Copy link
Copy Markdown

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);

@github-actions

Copy link
Copy Markdown
Contributor

⏰ Stale Pull Request

No activity for 1 year. Will close in 45 days unless updated.
To keep open, push commits, comment, or remove the stale label.

@github-actions github-actions Bot added the stale label Jun 28, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant