Hi I have an app with about 60 tables in the DB. If a user makes a change, the change is added to a generic Pending table that lists the source table, column , record id, new value, time, etc. but the change isn't made to the source table until the change is approved. When approved, I need to take the record, find the table that needs updating, find the record and the column and do the update. I think the way to do it is to create a generic method that takes a table type, reflect on the table so
Read More...