Eric Snyder - 2019-12-09

I have a table that Entity Framework is getting data for:

using (var context = new EngEntities())
            {
                var query = from p in context.PartMasters
                            orderby p.Id ascending
                            select p;
                partListView.SetObjects(query);
            }

I want to be able to click in a cell, change the value of the cell and have that change update the underlying table. The only way I understand how to do this is to get the value of the cell that was changed using an event and then update the row in the table using a query and context.savechanges.

Is there a better way (organic to EntityFrameWork and ObjectListView) to do this?