Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using EF4.4 Code First (+ repository pattern) and SQL Server CE 4.0.

I face issue with Transactions.

        var scope = new TransactionScope(
            TransactionScopeOption.RequiresNew,
            new TransactionOptions{IsolationLevel = IsolationLevel.ReadUncommitted}
        );

        try
        {
            using (scope)
                using (var countryRepository = new CountryRepository())
                {
                    var id = GenerateUtils.GenerateNegativInt32Id();
                    var newcountry = new Country(id, "Ukraine");

                    countryRepository.AddCountry(newcountry);
                    countryRepository.Commit();
                }
            }
        }
        catch (Exception) {...}

Error:

System.Data.EntityException: The underlying provider failed on Open.
System.InvalidOperationException: The connection object can not be enlisted in transaction scope.

MSDN say me that SQL Server CE does not support nesting, distributed transactions, save points and so on. But I need to use transactions.

Questions

  • Could you please give me sample how I can use transaction?
  • Could you please give me a guidance on how should I do that or any useful resource I can read and learn about it?

thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.