diff --git a/YLErpDAL/AppManager.cs b/YLErpDAL/AppManager.cs index 609c870a..588c857a 100644 --- a/YLErpDAL/AppManager.cs +++ b/YLErpDAL/AppManager.cs @@ -171,7 +171,7 @@ namespace YLErp "yladmin" => _configuration.GetConnectionString("yladmin"), "ylclient" => _configuration.GetConnectionString("ylclient"), "bondoms" => _configuration.GetConnectionString("bondoms"), - "glms_bigdata" => _configuration.GetConnectionString("glms_bigdata"), + "bigdata" => _configuration.GetConnectionString("bigdata"), "apex_oracle"=> _configuration.GetConnectionString("apex_oracle"), _ => string.Empty, }; diff --git a/YLErpDAL/Modules/UnderlyingModule/FundManagerLookupService.cs b/YLErpDAL/Modules/UnderlyingModule/FundManagerLookupService.cs index b37d8f5e..6f1d0235 100644 --- a/YLErpDAL/Modules/UnderlyingModule/FundManagerLookupService.cs +++ b/YLErpDAL/Modules/UnderlyingModule/FundManagerLookupService.cs @@ -49,7 +49,7 @@ WHERE CONVERT(fa.secucode USING utf8mb4) COLLATE utf8mb4_unicode_ci = return new FundManagerLookupResult { Status = FundManagerLookupStatus.NotFound }; } - var connectionString = AppManager.GetConnectionString("glms_bigdata"); + var connectionString = AppManager.GetConnectionString("bigdata"); if (string.IsNullOrWhiteSpace(connectionString)) { return new FundManagerLookupResult { Status = FundManagerLookupStatus.Unavailable };