/// <summary>
 /// Deprecated Method for adding a new object to the Teams EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToTeams(Team team)
 {
     base.AddObject("Teams", team);
 }
 /// <summary>
 /// Create a new Team object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="teamName">Initial value of the TeamName property.</param>
 public static Team CreateTeam(global::System.Int64 id, global::System.String teamName)
 {
     Team team = new Team();
     team.ID = id;
     team.TeamName = teamName;
     return team;
 }