Coding
Should we Dispose of a DBContext (Entity Framework)?
I have a Repository class that has a DBContext. Should we close the DbContext after the transaction? That is, should my Repository class implement IDisposable (so that I dispose of the DBContext) and should I Read more…