Rapolas Dangveckas

Results 18 comments of Rapolas Dangveckas

We would like to have this functionality as well.

@paillave, thank you. What about the first part of the question. Is there a way to get output of the stored procedure into output stream if that stored procedure returns...

@paillave thanks for explaining this, I assume this could be as a part of [documentation](https://paillave.github.io/Etl.Net/docs/recipes/sqlServer#execute-a-sql-process-for-every-row) as based on example provided there, it looks like ToSqlCommand is the only way to...

Just worth to mention, that this is the new beta version which we are using to exercise data transfers from old SQL instance.

@paillave could you add ```WaitWhenDone``` to documentation, this was a surprise for me as I haven't found any mentions on the main page of this. If that not absolute.

So I came as POC with this approach: ``` using System.Data; using System.Data.Odbc; using Paillave.Etl.Core; using Paillave.Etl.FileSystem; using Paillave.Etl.TextFile; using PocEtlDotNet.Entities; namespace PocEtlDotNet; class Program { static async Task Main(string[]...

I've changed the code to: ``` using System.Data; using System.Data.Odbc; using Paillave.Etl.Core; using Paillave.Etl.FileSystem; using Paillave.Etl.SqlServer; using Paillave.Etl.TextFile; using PocEtlDotNet.Entities; namespace PocEtlDotNet; class Program { static async Task Main(string[] args)...

Tried to call: ``` contextStream .Select("Create a value", _ => new { code = "CD", name = "CD name" }) .SqlServerSave("save to db", o => o.WithConnection("source1").ToTable("dbo.myTable")) ; ``` Got error:...

I have another issue with this version. I tried to get trans id from one source and apply it to the query to another source. Failed, then changed the id...