Áron Szőcs

Results 4 comments of Áron Szőcs

Here's my test project. EF context has a connection string with the _DataWarehouseSource1_ database. processRunner.ExecuteAsync gets the other connection string to _DataWarehouseTarget1_. However, this reads and writes to the same...

Based on your answer I've managed to make the "read from Native SQL db1 and write to Native SQL db2" solution work. But I'm still unable to do it with...

Yes, I did that already, I've injected the related DbContexts. Here's my code for reference: ``` using Microsoft.EntityFrameworkCore; using Paillave.Etl.Core; using Paillave.Etl.Reactive.Operators; using Paillave.Etl.EntityFrameworkCore; namespace SolutionEFToEFNamespace { class Constants {...

I'm sorry, there was a mistake from my part and the solution in my previous comment (EFCore to EFCore) does work. The issue was that I forgot to properly attach...