我有一Candidate
堂课。当有人删除 aCandidate
时,我希望DeletedCandidate
从中派生Candidate
的 a 存储在单独的表中。
我如何在 EF 中对此进行建模,代码优先?我认为我最好的选择是 TBC,但是当我在 Context 中使用以下内容时,System.Data.MappingException
会抛出 a。
modelBuilder.Entity<DeletedCandidate>().Map(d => {
d.ToTable("DeletedCandidate");
d.MapInheritedProperties();
});