Adapter, 2.5, C#
I have a simple self referencing table.
In code I add a new record like this:
singlePerson = MyLLBLCollection.getmeapersonfunction();
Person p = singlePerson.ItsChildren.AddNew();
The windows BindingSource that is bound to the MyLLBLCollection doesn't know about the new 'person' until I then call:
MyLLBLCollection.Add(p);
The moment I do this the BindingSource fires the Adding event and items bound to the MyLLBLCollection are updated visually.
Shouldn't AddNew() do that?