Could you give an example of what you are trying to do and we may be able to give you a better answer.
Sure i can
I have an entity with a lot of fields, and a GUI winform with databound controls. When a user saves the entity, behind his back there is some info written into an auditing table by an auditor object. The info consist of a userID, entityID, actionID (action = create/update...) and a description field. In the description text i want to provide text like "fields updated : " and then the changed fieldnames. One way to do this is to iterate over all fields of the entity, compare their currentValue to the DBValue, and if it's changed add it to the description. Now i just wanted to know if llblgen allready provides a mechanism for this, eg. a collection with the changed fields.
But coming to think of it, my first method is probably the simplest, at least simpler then dragging along a collection with "changed fields" all the way to the "auditor"...
Anyways thanx for the suggestions