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