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.