http://forum.strataframe.net/Topic14209-10-1.aspx?Highlight=Business+Binding+Source
After I've filled the business Object and I've seen CurrentDataTableRefilled event fired many times also.
I have to be careful because Constructor fires many times, CurrentDataTableRefilled event fires many times.
I'm writing code and think twice. (Normal business logic + explore BBS effects)
I expect there must be more resources (help + samples ) about this topic.
Could you give us more information ?
So, yes, the constructor will be fired 11 times, once for each of the 11 business objects. Also, CurrentDataTableRefilled is fired during or immediately after the constructor, so it will also be fired 11 times. If you want logic to fire within the CurrentDataTableRefilled event, but you only want to have it fire on the first business object, then you'll need to manually attach the handler to the event and call it on the first object instance. That way, it won't be attached to the other 10 that are created for the list.