/// <summary>
 /// Deprecated Method for adding a new object to the PhotoAlbums EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPhotoAlbums(PhotoAlbum photoAlbum)
 {
     base.AddObject("PhotoAlbums", photoAlbum);
 }
Example #2
0
 public static string PhotoAlbumDetailsUrl(PhotoAlbum aPhotoAlbum)
 {
     return "/PhotoAlbum/Details/" + aPhotoAlbum.Id;
 }
 /// <summary>
 /// Create a new PhotoAlbum object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="createdByUserId">Initial value of the CreatedByUserId property.</param>
 public static PhotoAlbum CreatePhotoAlbum(global::System.Int32 id, global::System.String name, global::System.Int32 createdByUserId)
 {
     PhotoAlbum photoAlbum = new PhotoAlbum();
     photoAlbum.Id = id;
     photoAlbum.Name = name;
     photoAlbum.CreatedByUserId = createdByUserId;
     return photoAlbum;
 }