c# - Dispose DataContext in local database -


i work local database in windows phone. required calling dispose() release resources , how best it?

using (datacontext context = new datacontext(dbconnectionstring))       {            //            context.submitchanges();            context.dispose();       } 

the using here calls dispose() (no matter whether leaves or via exception). don't have to.


Comments

Popular posts from this blog

design - Custom Styling Qt Quick Controls -

Unable to remove the www from url on https using .htaccess -