How can i ignore a DbUpdateConcurrencyException with my Entity Framework code?

后端 未结 2 648
生来不讨喜
生来不讨喜 2021-02-14 07:43

Is there any way I can tell EF to not worry about the number of rows a DELETE or UPDATE do or don\'t do?

I\'m trying to delete

2条回答
  •  野的像风
    2021-02-14 08:32

    You can in fact ignore these kinds of issues by setting:

    db.Configuration.ValidateOnSaveEnabled = false;

    Where db is the DbContext instance.

    Obviously you should know what you're doing when you do this, but then again, most approaches to updating a database that are not EF don't have any change tracking/validation and just issue update/insert/delete to the database naively without checking anything first, so you're basically just telling EF to behave more like that.

提交回复
热议问题