What does the Efx "Requires Transaction" do?

Hey,

Is this similar to the transaction scope in code? I’d like all or none of the processing done if I get an error in the middle of a function built with widgets.

Thanks.

Joe

Yes, it is wrapping the entire thing in a TransactionScope for you, so you don’t have to do it in code. Actually, if you do have code in your function and use TransactionScope, it can cause errors. (I know this firsthand)

2 Likes

Great. Thanks, Andrew.