Hello,
I'm using Access database with LLBLGen 3 and selfservicing template.
I bind the entity's collection to DevExpress grid control and make necessary changes(create,delete,update).But when I save the entity these changes are not saved. I need to save the collection with SaveMulti but it does not reflect the updates or deletes.
Is there a simple way to reflect all changes done in a collection of an entity to database?
thanks for the support,
Example;
Employee employee=new Employee;
//GridControl datasource - carsBindingSource
carsBindingSource.DataSource = employee.GetMultiCars(true);
//Gridcontrol add,delete,change done from GUI
employee.Save(); //not save cars
employee.Cars.SaveMulti();//only save newly added records, deleted records still exist