Hi,
I have latest build of LLBLGen.
I'm using SelfServicing classes with Visual Studio 2005 (framework 2.0).
I have a winform project that has:
- EntityCollection as datasource
- DataGridView
- BindingSource that bind the entityCollection to the DataGridView
The event "CurrentChanged" of my bindingSource is called 3 times each time I select a new row in my DataGrid. Detail about "current" entity of events: The first event contain an empty entity and the 2nd and 3th have the same selected entity.
Just to make sure it was not the same behavior with microsoft stuff. I created an empty projet with same configuration but instead of binding my bindingSource to LLBLGenDataSource, I bind to a Dataset. I received only one event each time I select a new row.
Do you have an idea why I receive 3 events instead of one ?
Is there any options I should set to have the expected behavior (only one event) ?
Thanks
Eric