public virtual void Dispose(bool disposing)
        {
            if (_disposed)
            {
                return;
            }

            if (disposing)
            {
                // free other managed objects that implement
                // IDisposable only

                try
                {
                    if (_objectContext != null && _objectContext.Connection.State == ConnectionState.Open)
                    {
                        _objectContext.Connection.Close();
                    }
                }
                catch (ObjectDisposedException)
                {
                    // do nothing, the objectContext has already been disposed
                }

                if (_dataContext != null)
                {
                    _dataContext.Dispose();
                    _dataContext = null;
                }
            }

            // release any unmanaged objects
            // set the object references to null

            _disposed = true;
        }
 public UnitOfWork(CourseManagerContext dataContext)
 {
     _dataContext   = dataContext;
     _objectContext = ((IObjectContextAdapter)_dataContext).ObjectContext;
     _repositories  = new Dictionary <string, dynamic>();
 }
Exemple #3
0
 public Repository(CourseManagerContext db)
 {
     Context = db;
     _dbSet  = Context.Set <T>();
 }