call instance method that has dependency injections without calling DI Constructor

I have a asp net core web api app that I made using Repository pattern. When a request comes to my controller, I call one of my services dependency methods, then in that Service that was just called, I call another service, which is just my Repository layer. This class in the repository layer MyRepo.cs relies on a DBContext.cs class I made.

// Appsettings.json

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Database": {
"ConnectionString": connection string"
}
}
</code>
<code>{ "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } }, "Database": { "ConnectionString": connection string" } } </code>
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "Database": {
    "ConnectionString": connection string"
  }
}

// Program.cs

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>// APPSETTIGS CONFIG
builder.services.Configure<DatabaseConfig>(
config.GetSection(DatabaseConfig.ConfigSectionName)); //Appsetting `Database` property
builder.services.AddScoped<IMyService, MyService>();
builder.services.AddScoped<IMyRepo, MyRepo>();
</code>
<code>// APPSETTIGS CONFIG builder.services.Configure<DatabaseConfig>( config.GetSection(DatabaseConfig.ConfigSectionName)); //Appsetting `Database` property builder.services.AddScoped<IMyService, MyService>(); builder.services.AddScoped<IMyRepo, MyRepo>(); </code>
// APPSETTIGS CONFIG
builder.services.Configure<DatabaseConfig>(
    config.GetSection(DatabaseConfig.ConfigSectionName)); //Appsetting `Database` property


builder.services.AddScoped<IMyService, MyService>();
builder.services.AddScoped<IMyRepo, MyRepo>();

// MyService.cs

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code> public class MyService: IMyService
{
private IMyRepo _myRepo;
public SurveyFormDataServices(IMyRepo myRepo)
{
_myRepo= myRepo;
}
public IEnumerable<MyTypes> GetTypes()
{
var types= _myRepo.GetTypes();
...
}
}
</code>
<code> public class MyService: IMyService { private IMyRepo _myRepo; public SurveyFormDataServices(IMyRepo myRepo) { _myRepo= myRepo; } public IEnumerable<MyTypes> GetTypes() { var types= _myRepo.GetTypes(); ... } } </code>
    public class MyService: IMyService
    {
        private IMyRepo _myRepo;
        public SurveyFormDataServices(IMyRepo myRepo) 
        {
            _myRepo= myRepo;
        }

        public IEnumerable<MyTypes> GetTypes()
        {
            var types= _myRepo.GetTypes();
            ...
        }
    }

// MyRepo.cs

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>public class MyRepo: IMyRepo
{
private SqlConnection sqlConnection;
public IEnumerable<MyType> GetTypes()
{
using (sqlConnection = DBContext.GetConnection())
{
...
}
}
}
</code>
<code>public class MyRepo: IMyRepo { private SqlConnection sqlConnection; public IEnumerable<MyType> GetTypes() { using (sqlConnection = DBContext.GetConnection()) { ... } } } </code>
public class MyRepo: IMyRepo
{
    private SqlConnection sqlConnection;
    public IEnumerable<MyType> GetTypes()
    {
        using (sqlConnection = DBContext.GetConnection())
        {   
            ...
        }
    }
}

// DBContext.cs

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code> public sealed class DBContext
{
private readonly DatabaseConfig _options;
private static string connectionString = string.Empty;
public DBContext(IOptions<DatabaseConfig> options)
{
_options = options.Value;
connectionString = _options.ConnectionString;
}
public static SqlConnection GetConnection()
{
SqlConnection connection = new SqlConnection(connectionString);
connection.Open();
return connection;
}
}
</code>
<code> public sealed class DBContext { private readonly DatabaseConfig _options; private static string connectionString = string.Empty; public DBContext(IOptions<DatabaseConfig> options) { _options = options.Value; connectionString = _options.ConnectionString; } public static SqlConnection GetConnection() { SqlConnection connection = new SqlConnection(connectionString); connection.Open(); return connection; } } </code>
 public sealed class DBContext
 {
     private readonly DatabaseConfig _options;
     private static string connectionString = string.Empty;

     public DBContext(IOptions<DatabaseConfig> options)
     {
         _options = options.Value;
         connectionString = _options.ConnectionString;
     }

     public static SqlConnection GetConnection()
     {
         SqlConnection connection = new SqlConnection(connectionString);
         connection.Open();
         return connection;
     }
 }

As you can see in my DBContext.cs class, the constructor has a parameter IOptions from the injected AppSettings. I did the options pattern by also binding it to a class that represent the settings.

What my issue is, in the MyRepo.cs, if I do this:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>using (sqlConnection = DBContext.GetConnection())
</code>
<code>using (sqlConnection = DBContext.GetConnection()) </code>
using (sqlConnection = DBContext.GetConnection())

The connectionString property in my DBContext.cs file will be empty, since I am guessing I did not instantiate with new DBProvider(IOptions). I want to avoid this and even if I do it like this, I get an error because I don’t know how to pass in IOptions, and I rather not.
How can I call or use the DBContext.GetConnection() function and ensure GetConnection() will have the connectionString value from the appsettings.json

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật