WHen you do BusinessObject.Add(), does that clear out the business object and then add a new row? Or do I need to do BUsinessObject.Clear() first if I want to clear all the values out?
Just double checking.
Thanks,
Marcel
Just to make sure I got it - what is the recommened way to handle the following scenario?
I have a parent/child bo.
The user enters one parent record, and then he adds let's say 5 child records before he clicks finish (like with a wizard). For example I set up one company with 5 contacts. Now after adding the five contacts, the user discover that contact #3 shouldn't have been added, so he removes him from the list. Finally the user is satisfied with the result and he clicks finish and the parent/child records are saved to the database.
To add a new record I simply use the add method. What about deleting a record from that bo. Simply use delete? How will that affect the final save?
Again I appreciate your help, and your framework has already saved me a considerable amount of work.