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