internal DataAccessContext(string databaseFilename)
 {
     // initialize a connection and transaction
     _databaseFilename = databaseFilename;
     _connection       = CreateConnection();
     _transaction      = _connection.BeginTransaction(IsolationLevel.ReadCommitted);
     _context          = new ConfigurationDataContext(_connection);
     //_context.Log = Console.Out;
 }
예제 #2
0
 protected Broker(ConfigurationDataContext context)
 {
     Context = context;
 }
 internal ConfigurationDocumentBroker(ConfigurationDataContext context)
     : base(context)
 {
 }