-
Notifications
You must be signed in to change notification settings - Fork 191
Closed
Labels
@marcwittke
Description
Therefore, the only way to use the OracleDataSource
is through microsoft's dependency injection abstractions.
var services = new ServiceCollection(); services.AddOracleDataSource("MyDb", "User Id=...;Password=...;Data Source=...");
I want to be able to create the OracleDataSource
in scenarios without such injection container
- using another container, like SimpleInjector
- using Poor Man's DI in test environments