Ejemplo n.º 1
0
 public static IContainer Configure(Action<StoreOptions> configureOptions)
 {
     var registry = new DevelopmentModeRegistry(configureOptions);
     return new Container(registry);
 }
Ejemplo n.º 2
0
        public static IContainer Configure(Action <StoreOptions> configureOptions)
        {
            var registry = new DevelopmentModeRegistry(configureOptions);

            return(new Container(registry));
        }
Ejemplo n.º 3
0
 public static IContainer OnOtherDatabaseSchema()
 {
     var registry = new DevelopmentModeRegistry(options => options.DatabaseSchemaName = "other");
     return new Container(registry);
 }
Ejemplo n.º 4
0
        public static IContainer OnOtherDatabaseSchema()
        {
            var registry = new DevelopmentModeRegistry(options => options.DatabaseSchemaName = "other");

            return(new Container(registry));
        }