Changeset 4796 for branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Services.Hive.DataAccess/3.3
- Timestamp:
- 11/15/10 14:27:27 (14 years ago)
- Location:
- branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Services.Hive.DataAccess/3.3
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Services.Hive.DataAccess/3.3/HeuristicLab.Services.Hive.DataAccess-3.3.csproj
r4649 r4796 72 72 <DependentUpon>HiveDataContext.dbml</DependentUpon> 73 73 </Compile> 74 <Compile Include="Interfaces\IContextFactory.cs" />75 74 <Compile Include="Interfaces\IHiveDao.cs" /> 76 75 <Compile Include="Properties\AssemblyInfo.cs" /> -
branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Services.Hive.DataAccess/3.3/TransactionManager.cs
r4649 r4796 10 10 public class TransactionManager { 11 11 public Disposable<TransactionScope> OpenTransaction() { 12 TransactionScope transaction = new TransactionScope(TransactionScopeOption.Required, new TransactionOptions { IsolationLevel = ApplicationConstants.I SOLATION_LEVEL_SCOPE});12 TransactionScope transaction = new TransactionScope(TransactionScopeOption.Required, new TransactionOptions { IsolationLevel = ApplicationConstants.IsolationLevelScope }); 13 13 var disposable = new Disposable<TransactionScope>(transaction); 14 14 disposable.Disposing += disposable_Disposing;
Note: See TracChangeset
for help on using the changeset viewer.