Introduction to Dynamic Data

What is DynamicData for? DynamicData allows monitoring source collections and updating target collection in such a way that the updated collections satisfy certain conditions specified by the DynamicData operators. The great feature of DynamicData is that the target collections pick up the source collection inserts, removes and updates and arrange the corresponding changes in the target collections to satisfy the same conditions. As I mentioned in the previous article in the series Using Rx Observable Streams and Dynamic Data Patterns ... DynamicData uses Reactive Extensions to monitor and aggregate the source collections' changes.

Feb 26, 2025 - 20:10
 0
Introduction to Dynamic Data

What is DynamicData for?

DynamicData allows monitoring source collections and updating target collection in such a way that the updated collections satisfy certain conditions specified by the DynamicData operators.

The great feature of DynamicData is that the target collections pick up the source collection inserts, removes and updates and arrange the corresponding changes in the target collections to satisfy the same conditions.

Image description

Image description

As I mentioned in the previous article in the series Using Rx Observable Streams and Dynamic Data Patterns ...

DynamicData uses Reactive Extensions to monitor and aggregate the source collections' changes.