t1: ServiceDomain.Enter
t1: PerformDBOperation
t2: ServiceDomain.Enter
t1: PerformSomeOtherDBOperation
t2: PerformT2DBOperation
t1: ServiceDomain.Leave // Which "ServiceDomain.Enter" does this
correspond to? t1 or t2?
The documentation says "Code that is enclosed between calls to Enter
and Leave runs in its own context and behaves as if it were a method
that is called on an object created within the context." So my
question is "Does 'Code that is enclosed between calls' refer to code
on the same thread, or code in the same executable?
Thanks in advance.
Travis