Quick (I think) question about how Entity Framework participates in a DTC Transaction.
If I create two DbContexts within the same distributed transaction, will data I save in the first context be available to subsequent queries via the second context?
In other words, within a DTC transaction: I fetch, change and save data via context1, then create context2 and query the same entities. Will the uncommitted data from context1 be available to context2?