I am trying to bind a datagrid with a datatable in WPF. This is my first project in WPF. The datatable has a single column. The datatable is bound with a table that has a varbinary image column in database.
In database, this is the table structure
Code:
table tblPicture ( @Picture varbinary(MAX) )
Datagrid gets filled with 5 rows (of datatype byte[]). But all...