-
-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQL transaction #292
Comments
About the SQL transaction, you have to handle it on top of the ETL process. Nothing is planed for now to handle sub transaction within the process. To skip failed rows, I can do something for this in a future release. You are working with entity framework extension or with direct sql extension? Can you submit an example of your code for me to have a more precise idea of what you expect? |
I already made it in a new operator. Thanks |
Ok good. Did you find the documentation clear enough for this purpose? |
Yes. It took me some time to understand the architecture but after that the documentation was enough. |
Can you execute the Reason I try to execute the Delete(EFCore) operator within a transaction scope, but it throws an error, due to this command.
|
@TomatorCZ , I created an issue, I'll work on it asap. |
@TomatorCZ Can you give me the exact exception stack you have? |
@paillave In a scenario, where you have multiple contexts and you want to perform something like distributed transaction, you cannot use this class yet in .NET Core(dotnet/runtime#715). I hope it is helpful |
So (I reformulate to ensure I get it right) you mean you don't use distributed transaction as for now, EF Core can't handle it the way you want. Then you try to use a workaround to (somehow) simulate the distributed transaction behavior. This workaround is to make 2 ado.net transactions that you set to their respective context and that you manage manually. Am I right? |
Yes, exactly. |
Hi,
Is there a way how to make transaction processing in SQL ?
Is there a way how to skip failed rows which were failed and continue with inserting next rows ?
The text was updated successfully, but these errors were encountered: