How to update a property in Entityframework core
var mydata= _dbContext.MyTable.Where(a => a.Status== "CA")
This gives m more than one record and i want to update only one property in these records . Forexample i want to set IsAvailable = false for all the records here in mydata.
Can i do this without a for loop...