Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/09 15:00:35 (15 years ago)
Author:
svonolfe
Message:

Updated transaction management (#527)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataAccess.ADOHelper/SessionFactory.cs

    r1468 r1488  
    3333    private IDictionary<Thread, ISession> sessions =
    3434      new Dictionary<Thread, ISession>();
    35 
    36     private ITransactionManager transManager =
    37           new TransactionManager();
    3835
    3936    public Type DbConnectionType { get;  set; }
     
    8683        if (!sessions.ContainsKey(current)) {
    8784          sessions[current] =
    88             new Session(this, transManager);
     85            new Session(this);
    8986        }
    9087
Note: See TracChangeset for help on using the changeset viewer.