Now that I see Jeremy's answer, I think I remember hearing that the best practice is to use a new DataContext for each data operation. Rob Conery's written several posts about DataContext, and he always news them up rather than using a singleton.

  - [http://blog.wekeroad.com/2007/08/17/linqtosql-ranch-dressing-for-your-database-pizza/][1]
  - [http://blog.wekeroad.com/mvc-storefront/mvcstore-part-9/][2] (see comments)


Here's the pattern we used for Video.Show ([link to source view in CodePlex][3]):

    using System.Configuration;
    namespace VideoShow.Data
    {
      public class DataContextFactory
      {
        public static VideoShowDataContext DataContext()
        {
            return new VideoShowDataContext(ConfigurationManager.ConnectionStrings["VideoShowConnectionString"].ConnectionString);
        }
        public static VideoShowDataContext DataContext(string connectionString)
        {
            return new VideoShowDataContext(connectionString);
        }
      }
    }

Then at the service level (or even more granular, for updates):

    private VideoShowDataContext dataContext = DataContextFactory.DataContext();

        public VideoSearchResult GetVideos(int pageSize, int pageNumber, string sortType)
        {
            var videos =
                from video in DataContext.Videos
                where video.StatusId == (int)VideoServices.VideoStatus.Complete
                orderby video.DatePublished descending
                select video;
            return GetSearchResult(videos, pageSize, pageNumber);
        }



  [1]: http://blog.wekeroad.com/2007/08/17/linqtosql-ranch-dressing-for-your-database-pizza/
  [2]: http://blog.wekeroad.com/mvc-storefront/mvcstore-part-9/
  [3]: http://www.codeplex.com/videoshow/SourceControl/FileView.aspx?itemId=25033&changeSetId=10876