heerser wrote:
Hi all,
I have a datagrid that binds to a TypedList. The TypedList contains the fields of two tables. When the user updates a row in the datagrid one table should be updated. What is the best way to update a single row/object?
TypedLists are considered read-only, so if you want to update entities using the typedlist data, you should load the entities frm the db, update the fields which are updated in the typedlist and then save the entities again.