I have a database with a table that records data coming from various sources. 3 columns
'Source' 'Value' 'Timestamp'
e.g.
source1 21 '11:03'
source6 22 '11:03'
source9 456 '11:03'
The table is updated 2 to 3 times a second. Each Value may or may not change. Each 'Source' value is displayed in a seperate label or text box on the screen (not in a grid). I need to find the best method to get this data to bind to WPF contols. What type of object should I hold the data in Dictionary, DataTable etc.
What type of object is going to hold the data? How do I bind my Label or TextBox to the value.
I query the sources 2 to 4 times a second. The vast majority of the time the values in the database table won't change Often it is only one value that changes Sometimes they all change I only expect to have upto about 30 unique datasources.
Put your thinking caps on please.