I’m frustrated with Data Sources in Visual studio.
I wan to use an object as a datasource for my report. As I understand VS understands only public properties and datatables. But I want to use a List<Image> from my object. Is it possible?
EDIT: For commentors. If you select an object with a table or a public property, this table is being displayed in data sources window and can be dragged onto a control or selected in reportviewer or whatever. List<Image> is not visible in datasource window.
The class implements IEnumerable Interface can be given as datasource in DOTNET
Ex: Dataset, Datatable, List, Array etc..