Update to latest version and show additional features
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user