Hi,
do you have a standard solution for the removal of referenced key? An example:
public class UM : FullAuditedEntity, IMustHaveTenant { ... } public class Article : FullAuditedEntity, IMustHaveTenant { ... [Required] [ForeignKey("UM_Stock_Id")] public virtual UM UM_Stock { get; set; } public virtual int? UM_Stock_Id { get; set; } ... }
Now:
Thank you