私は次のようなコードを持っています:
using (TransactionScope scope = TransactionScopeFactory.CreateTransactionScope())
{
*// some methodes calls for which scope is needed*
...
...
*//than WCF method code for which I don't want transaction to be involved, but if it throws an exception I don't wish scope to be completed*
WcfServiceInstance.SomeMethod();
scope.Complete();
}
私の質問は、Transaction スコープ内で問題なく WCF サービス メソッドを呼び出すことはできますか? (サービス メソッドがどのように実装されているかはわかりません) また、wcf サービス メソッドの呼び出しに Transaction が関与しないことを確認したいと思います。