Exemplo n.º 1
0
 public void updatePhoto(Photo i)
 {
     entities.Photos.Attach(i);
     entities.Entry(i).State = EntityState.Modified;
     entities.SaveChanges();
 }
Exemplo n.º 2
0
 public void addPhoto(Photo i)
 {
     entities.Photos.Add(i);
     entities.SaveChanges();
 }