Hi
I'm converting my projects from old llblgen (2005.1 I think) + .net 1.1 to the lastest llblgen version (2.5) + .net 2.0 (yeah, 3.5 is for later)
Previously, I had to do a trick to have all validation errors at once, before the save. I mean:
- Normal llblgen behaviour: just before an entity save, it validate the data, and if it's not correct it throw an exception. In this behaviour, the client try to save (via webservices), got an exception (on entity A), the user fix this validation error, submit again and ... got a new validation error on entity B (because entity B is saved only if entity A is saved).
- My trick : code to recursively execute the validation method on all linked entities ( using GetDependentRelatedEntities / GetDependingRelatedEntities / GetMemberEntityCollections)
So my question now:
Is it a way to do it easier in version 2.5 ?
Or an easy way than to use these 3 methods called recursively with loop check etc. ?
I've search on the forum but didn't find anything...