mehdime / DbContextScope

A simple and flexible way to manage your Entity Framework DbContext instances
http://mehdi.me/ambient-dbcontext-in-ef6/
MIT License
634 stars 271 forks source link

Actually drop the reference to the _savedScope #1

Closed IDisposable closed 10 years ago

IDisposable commented 10 years ago

This change will let the GC collect the scope sooner. Also removed the init of _disposed to false. It's a bool and those are false by default.

mehdime commented 10 years ago

LGTM. Thanks Marc.