I have added a new property into my existing model. It\'s a bool property with default value true. There are existing data in this table and I would like to set one specific
Instead of using the Sql method you could also use the UpdateData method.
migrationBuilder.UpdateData(
table: "RequestValidationErrors",
keyColumn: "WordCode",
keyValue: "RequestValidationError.MoreThanOneItemFound",
column: "IsBreaking",
value: false);
(I don't know if only ef core supports this method)