using GerstITS.Data.EntityFramework; namespace GerstITS.Examples.JobDashboard.Data; /// /// The EF Core module registers an auto-migration startup task that requires an /// . The InMemory provider has no migrations, so /// this implementation simply disables auto-migration. /// public sealed class NoDatabaseMigrationConfiguration : IEntityFrameworkMigrationConfiguration { #region IEntityFrameworkMigrationConfiguration public bool AutoMigrate => false; #endregion }