Use IEntityTypeConfiguration with a base entity
问题 In EF Core 2.0, we have the ability to derive from IEntityTypeConfiguration for cleaner Fluent API mappings (source). How can I extend this pattern to utilize a base entity? In the example below, how can I have a BaseEntityConfiguration to reduce duplication in LanguageConfiguration and MaintainerConfiguration , modifying properties that are in the BaseEntity only in the BaseEntityConfiguration ? What would such a BaseEntityConfiguration look like; and how would it be used, if at all, in