コード例 #1
0
 public static void Initialize(string conectionString)
 {
     _client    = new MongoClient(conectionString);
     _db        = _client.GetDatabase("DevelopexBotDb");
     _colection = _db.GetCollection <UserModel>("Users");
     _logger    = LoggerProxy.Logger(nameof(UsersDal));
 }