/blazor-grid-batch-editing

Use Entity Framework Core to implement batch data editing with the DevExpress Blazor Grid component.

Primary LanguageHTMLOtherNOASSERTION

DevExpress Blazor Grid – How to enable batch data editing with Entity Framework Core

This example uses Entity Framework Core to introduce batch data editing when using the DevExpress Blazor Grid component.

Batch Editing in DevExpress Blazor Grid

Our sample uses DbContext to obtain and update Blazor Grid data. When a user creates a new row or modifies/deletes an existing row, a DbContext instance tracks changes. End users can press Save to save all changes made in this context or press Cancel to dispose this context and discard accumulated changes.

The CustomizeElement event handler uses the DbContext.ChangeTracker property to identify and highlight modified cells.

Files to Review

Documentation

More Examples