Viktoras Mickūnas

Results 8 issues of Viktoras Mickūnas

.SqlServerSave() currently generates sql query for INSERTs/UPDATEs using `OUTPUT INSERTED.*` clause which is not supported by SQL Server versions prior to 2005. I know that this is legacy stuff, but...

In the initial stage of our data processing pipeline, we verify the presence of a predefined set of files. If any of these files are missing, we need to raise...

documentation

Is there a way to specify the SQL command execution timeout for .`CrossApplySqlServerQuery` and `.ToSqlCommand`? I'm trying to run a stored proc using .`CrossApplySqlServerQuery` and consume the result set that...

enhancement

Let's say we have a data pipeline like this: ``` var stream = contextStream .ToSqlCommand("Create tables", Queries.CreateTables) .CrossApplyFolderFiles("Get data file", "data.csv", true) .CrossApplyTextFile("Parse data", FlatFileDefinition.Create( i => new { code...

question
documentation

There is a problem with generating SQL, since ODBC and OLE DB connections do not support named parameters in INSERT/UPDATE queries. The parameters need to be replaced with ? symbols...

Hello, is there a way to get an in memory list as an instantiated ` IList` from SQL Server stream and have the database cursor consumed/closed? First I thought extension...

question
documentation

Hello, nice package you have here for ETL in .NET! I have a question regarding database streams: Suppose I need to define two streams for two different tables from the...

question

I was following The Elmish Book and the Fable compilation hangs because of the early Fable 4 version in the tools manifest: 4.0.0-snake-island-alpha-021. When I changed it to 4.9.0, compilation...