show/hide this revision's text 2 added sample code

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.

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

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);
    }
show/hide this revision's text 1

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.