/// <summary> /// Deprecated Method for adding a new object to the Genres EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToGenres(Genre genre) { base.AddObject("Genres", genre); }
/// <summary> /// Create a new Genre object. /// </summary> /// <param name="genreID">Initial value of the GenreID property.</param> /// <param name="name">Initial value of the Name property.</param> public static Genre CreateGenre(global::System.Int32 genreID, global::System.String name) { Genre genre = new Genre(); genre.GenreID = genreID; genre.Name = name; return genre; }