I have a database with a table that records data coming from different sources. 3 columns
'Source' 'Value' 'Timestamp' '
eg.
source1 21 '11: 03 '
source6 22 '11: 03 '
source9 456 '11: 03 '
The table is updated 2 to 3 times per second. Each value may or may not change. Each Source value is displayed in a separate label or text field on the screen (rather than in the grid). I need to find a better method to get this data associated with WPF content. What type of object should store data in a dictionary, DataTable, etc.
What type of object will store the data? How to bind your label or text box to a value.
I request sources 2 to 4 times per second. In the vast majority of cases, the values ββin the database table will not change. Often only one value changes. Sometimes they all change. I expect that you will have up to 30 unique data sources.
Put your thought caps, please.
source share