This is the list of things you'll forget but will need.
Update a property that EF Core doesn't know changed.
Typically, you updated when it was unattached. Then attached it, but EFC be like “these are not the droids you are looking for.” Easy, with this, it'll update when you SaveChanges.
db.Entry(item).Property(x => x.PropertyName).IsModified = true;