I am using EF to access Sql azure. In one situation I need to make changes to two databases, for which normally I would use TransactionScope and it would escalate to MSDTC. Now MSDTC is not supported in Sql Azure, so I can't use TransactionScope.
Is there another way to do this? (other than doing it without the distributed transaction and having to manually rollback state somehow).