多做题,通过考试没问题!

微软认证考试

睦霖题库>其他计算机考试>微软认证考试

You are implementing an ASP.NET application that uses LINQ to Entities to access and update the database.The application includes the following method to update a detached entity of type Person. You need to implement the UpdatePerson method to update the database row that corresponds to the personToEdit object. Which code segment should you use?()

  • A、_entities.People.Attach(personToEdit); _entities.ObjectStateManager.ChangeObjectState(personToEdit, EntityState.Modified); _entities.SaveChanges();
  • B、_entities.ObjectStateManager.ChangeObjectState(personToEdit, EntityState.Added);_entities.SaveChanges();
  • C、_entities.People.ApplyCurrentValues(personToEdit); _entities.SaveChanges();
  • D、_entities.People.Attach(new Person() { Id = personToEdit.Id });_entities.ObjectStateManager.ChangeObjectState(personToEdit, EntityState.Modified);_entities.SaveChanges();
正确答案:A
答案解析:
进入题库查看解析

微信扫一扫手机做题