C#C
C#2y ago
botcute

Cascading delete from child to parent

I have an entity like this:
public class A{
public Guid Id;
public Guid Bid;
}
public class B{
public Guid Id;
}
How can I make so that B get deleted when A get deleted
Was this page helpful?