How do I specify ON DELETE NO ACTION Foreign Key Constraint in my model designs?
At present, I have:
public class Status { [Required] public
Just make the FK property nullable, then the cascade delete will be gone.
public int? StatusId { get; set; }