private void detach_Photos(Photo entity)
 {
     this.SendPropertyChanging();
     entity.Album = null;
 }
 private void attach_Photos(Photo entity)
 {
     this.SendPropertyChanging();
     entity.Album = this;
 }
 partial void UpdatePhoto(Photo instance);
 partial void DeletePhoto(Photo instance);
 partial void InsertPhoto(Photo instance);