I have several methods that deal with DB and all of them start by calling
FaierDbDataContext db = new FaierDbDataContext();
Since the Linq2Sql DataContext object implements IDisposable, should this be used with "using"?
using (FaierDbDataContext db = new FaierDbDataContext()) {
// use db here
}
What are the implications of using it one way or another?