namespace ASC.Core.Common.EF; [Singletone] public class MigrationHistory { private readonly ConcurrentDictionary _historyStore = new ConcurrentDictionary(); public bool TryAddMigratedContext(Type contextType) { return _historyStore.TryAdd(contextType, true); } }