Suppose we have a table, Person with columns - ID, Name, Age, Occupation. User A reads row with id, 1 and updates the name (not saved yet). User B read row id 1 and updates the age (saves) . Then, when user A updates the row. Does user A overwrite the changes to the Age column by User B? Basically, Does calling EF's Savechanges() overwrite the entire row with the latest update? (No concurrency handled).
Thanks.