Hi DCherubini,
Thanks, I was solve by inject the service rather than register it.
public UnitedExportDbContext(IConnectionString connectionString)
Thanks, I was solve by inject the service rather than register it.
public UnitedExportDbContext(IConnectionString connectionString)
: base(connectionString.GetConnectionString())
{
}
Because of I need dynamic not static. Is that correct way?