When should one call ...DbContext.dispose()... with entity framework?...Is this imaginary method bad?...public static string GetName(string userId)
{
var context = new DomainDbContext();
var userName = context.UserNameItems.FirstOrDefault(x => x.U...