Ignore classes that are not entities

pull/4595/head
liangshiwei 5 years ago
parent cbd3796191
commit 3afc265b46

@ -491,6 +491,11 @@ namespace Volo.Abp.EntityFrameworkCore
return;
}
if (!typeof(IEntity).IsAssignableFrom(typeof(TEntity)))
{
return;
}
modelBuilder.Entity<TEntity>().ConfigureByConvention();
ConfigureGlobalFilters<TEntity>(modelBuilder, mutableEntityType);

Loading…
Cancel
Save