I have several classes that I need to derive from a common base class which holds an Id. Ignoring the all but one of these for the moment, let's say we have:...public class MyBase {
[Key]
public int Id { get; set; }
}
public class MyName : MyBase {...