The requirement for our project are as follows...BTw, this is my first winforms app, I am typically a graphic UI designer, so my lingo may be off here.
Winforms Application - MDI (esentially one parent form which just holds the navigation controls)
Multiple children Forms Open at once and if changes occur in one form then all other forms will update accordingly. Meaning if one form shares a related entity with another form and that entity is changed then the update cascades.
The important part is that it cannot repaint the UI.
I thought I would be able to use LINQ dataview from the dataset, but it does not handle joins in queries so that is out the window. Which would of be cool if it did support that and also change monitoring and propagate all those changes to the related queries that join to the changes entity.
Question,
Can I use LLBGEN object approach here? If so, I would I implement this? Keep in mind there are like 15 forms, and they can all be open at the same time (annoying yes). Thus if I delete a customer from the customers form, then all its properties get deleted on the address form.
Please try to explain this clearly. I am learning, and have been absorbing a lot of information, and as you guys know some of it is contradictory.
Thanks so much!