How to update a row using Entity Framework code first?

后端 未结 2 2058
不思量自难忘°
不思量自难忘° 2021-02-14 22:29

How should I go about updating a row in the database? There is no update method, and if I use add and the primary key id already exists, I get an exception. Please provide an ex

2条回答
  •  情书的邮戳
    2021-02-14 23:06

    Here is a way that worked for me without having to make a query first:

    context.Students.Attach(student);
    context.Entry(student).State = EntityState.Modified;
    context.SaveChanges();
    

提交回复
热议问题