I have an operation contract, on a windows service and it has an attribute
[OperationBehavior(TransactionScopeRequired = true)]
I would like to get rid of this attribute. Reason :
containerize the service. and Containerized apps do not support MSDTC , that's the purpose of the attribute!
What are the implications of doing this? I can confirm the code within the operation contract inserts into a single database. No events triggered, however I am unsure of whether there is a transaction where the service is consumed.
Can I get some advice on this?