/// <summary>
 /// Deprecated Method for adding a new object to the Tracks EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToTracks(Track track)
 {
     base.AddObject("Tracks", track);
 }
 /// <summary>
 /// Create a new Track object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 public static Track CreateTrack(global::System.Guid id, global::System.String name, global::System.String description)
 {
     Track track = new Track();
     track.Id = id;
     track.Name = name;
     track.Description = description;
     return track;
 }