Ejemplo n.º 1
0
 public void UpdateEmployee(Employee entity)
 {
     context.Entry(entity).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
     context.SaveChanges();
 }
Ejemplo n.º 2
0
 public void updateSample(Sample entity)
 {
     context.Entry(entity).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
     context.SaveChanges();
 }