Skip to content

Instantly share code, notes, and snippets.

@potchy
potchy / CascadeDeleteAttribute.cs
Created July 22, 2020 16:00 — forked from tystol/CascadeDeleteAttribute.cs
Entity Framework CascadeDelete using Data Annotations
using System;
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class CascadeDeleteAttribute : Attribute { }