I\'m using a single instance of DbContext scenario to shadow entire copy of the database locally in a WPF app. I\'ve heard this is bad practice, but my database
DbContext
Please use using() for CRUD.It will automatically reload the updated data.
using (myDbContext context = new myDbContext()) { }
Best Regards, Thet Tin Oo