Answer:
We suggest you to ensure to set the IsPrimaryKey to an unique value column in the Details view Grid to perform editing in DataGrid. You can refer the below documentation and codes for more details.
https://blazor.syncfusion.com/documentation/datagrid/editing/
Here is the code snippet for your reference,
<SfGrid DataSource="@SelectedHouse.Features" Toolbar="@(new List<string>() { "Edit", "Update", "Cancel" })"> <GridColumn Field=@nameof(FeatureObject.Description) HeaderText="Feature" Width="110" AllowEditing="false" IsPrimaryKey="true"> GridColumn> <GridColumn Field=@nameof(FeatureObject.Weight) HeaderText="Weight" Width="110" EditType="EditType.NumericEdit">GridColumn> |