withSIX.Mini.Infra.Data.Services.DbContexts.Factory C# (CSharp) 메소드

Factory() 개인적인 메소드

private Factory ( ) : GameContext
리턴 GameContext
        GameContext Factory() {
            var gameContextJsonImplementation = new GameContextJsonImplementation(_cache);
            // Workaround for nasty issue where we get the DomainEventHandler from the same lazy instance during load :S
            _gameContext = new Lazy<IGameContext>(() => gameContextJsonImplementation);
            return gameContextJsonImplementation;
        }
    }