Antonio Vidal

Results 6 comments of Antonio Vidal

Hello. Thank you for your comments! I removed the enlisting and it was working fine as you said! I'm also testing the openAsync and it's seems ok too. We are...

Hello @wumingwuan, do you use a single DB? In my case is a distributed transaction with 2 different DB. So it's interesting that you are getting XA errors if you...

Hello @wumingwuan. I just noticed in your code that you are not "using" the connection. ``` using (var scope = TransactionScopeEx.CreateTransactionScope()) using (var connection = directoryDal.Open(DBConn.Conn)) { //some db delete...

That is quite interesting! Indeed, if I use `b.UseEnvironment("Development");` the testserver behave as I expected. So now I have several points on this: 1. Why only in development? 2. Is...

Thank you, I understand the concern about performance loss. > You can set the flag outside of the environment as well, those are just the defaults when you use the...

Hello. In my local machine I use "development" and in the pipeline i use "testing" and "acceptance", but needed to force the test server with `b.UseEnvironment("Development");` as @davidfowl suggested for...