Please see the attached files. I have a master detail grid. When I edit and save ONE record in the detail grid, ALL the records in the detail grid are set to the one record that was changed.
Before editing the first record (row) in the detail data grid:
After editing the first record (row) in the detail data grid:
I tested your suggestion and it did not resolve the problem. I've attached a simple issue reproducing sample and a video demo showing the replication of the problem.
public partial class EmployeeTraining
{
/// <summary>
/// Employee foreign key property public Guid EmployeeId { get; set; }
/// <summary>
/// Training foreign key property
/// </summary>
[Key]
public Guid TrainingId { get; set; }
...
}
|