Does this static class reuse Entity Framework connection and is it thread safe?
public static class TeamService
{
public static Team GetTeam(string id)
{
using (var Db = new ApplicationDbContext())
{
//TODO:
}
}
}