Can anybody tell me the real benefit of keeping Entity Framework model metadata in a database table (it does this using a default convention)?
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<IncludeMetadataConvention>();
}
I can turn it off, and I think it makes the database cleaner to look at. But does this have some negative impact on performance?
I am using Code Only.
Thanks!