/// <summary>
 /// Create a new Game object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="matchDate">Initial value of the matchDate property.</param>
 public static Game CreateGame(global::System.Int32 id, global::System.DateTime matchDate)
 {
     Game game = new Game();
     game.Id = id;
     game.matchDate = matchDate;
     return game;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Games EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToGames(Game game)
 {
     base.AddObject("Games", game);
 }