Just in case I was not very clear.
I would like a simple notification of when a table becomes modified so I can refresh entities in memory.
For example say I have an employee TList<Employee> and the user has multiple forms open employee information.
So if another user changes any employee information at the server all applications would be notified and could make
the appropriate steps to refresh. Normally I maintain a single TList<> for data in the app so I would only need to update
the NetTiers entities in the list, then any forms needing refreshing would be hooked to the TList's Date Changed event.
Am I crazy or would this work?