public static IClaptrapBootstrapperBuilder UseMongoDB(
     this IClaptrapBootstrapperBuilder builder,
     Action <MongoDBProviderConfigurator> mongoDB)
 {
     return(builder.UseMongoDB(x => true, mongoDB));
 }
Example #2
0
 public static IClaptrapBootstrapperBuilder UseOrleans(
     this IClaptrapBootstrapperBuilder builder,
     Action <OrleansConfigurator> orleans)
 {
     return(builder.UseMongoDB(x => true, orleans));
 }