Marking all fields changed for replication

Hi,

I am trying to implement dynamic replication features where Aurelius logged changed have been filtered and not echoed. Later the situation might change so that I want to replicate that whole object. 

How can I mark all fields ([ECHO_LOG].CHANGED_COLUMNS) changed and logged for Echo replication process?






If I understand correctly what you want, one thing you can do is to subscribe to Aurelius' OnUpdated event handler before subscribing echo events to it. Then you change the Args.ChangedColumns so that when echo is logging it, it will grab the modified value.

Thanks for the idea Wagner. That sounds what I am looking for.