/// <summary>
 /// Deprecated Method for adding a new object to the releases EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToreleases(release release)
 {
     base.AddObject("releases", release);
 }
 /// <summary>
 /// Create a new release object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="gid">Initial value of the gid property.</param>
 /// <param name="name">Initial value of the name property.</param>
 /// <param name="artist_credit">Initial value of the artist_credit property.</param>
 /// <param name="release_group">Initial value of the release_group property.</param>
 /// <param name="edits_pending">Initial value of the edits_pending property.</param>
 /// <param name="quality">Initial value of the quality property.</param>
 public static release Createrelease(global::System.Int32 id, global::System.String gid, global::System.Int32 name, global::System.Int32 artist_credit, global::System.Int32 release_group, global::System.Int32 edits_pending, global::System.Int16 quality)
 {
     release release = new release();
     release.id = id;
     release.gid = gid;
     release.name = name;
     release.artist_credit = artist_credit;
     release.release_group = release_group;
     release.edits_pending = edits_pending;
     release.quality = quality;
     return release;
 }