I'm looking for a way to write code with Entity Framework to update 1000's of records that match a criteria.
In SQL it would look like this
UPDATE [Items]
SET [IsInSeason] = 1
WHERE [Name] like '%summer%'
It doesn't make sense for me to load in all items into memory just for this update.
And I would like to avoid writing regular SQL statements (if possible)