I've not tried this before. I have a Local RDLC which I'm binding to a List<CustomClass> in a C# Web app. I'm using LinqToSQL for data access. No ReportViewer. I'm using the Report.Render technique as I'm trying to mass produce documents. Up till now, everything has worked quite well.
My problem is this. In the database I have a varbinary(max) for storing an image.
I am fairly certain I already have a Jpg image stored correctly in the database. (I do have a fair amount of experience storing binary objects.)
When I create the class object in the list, the image property is populated. Within the object class, the image field is defined as System.Data.Linq.Binary.
But the Image control on the rdlc is still showing the red X.
The image control's image source is set to Database.
The 'Use this field' is set to the image property of the datasource structure.
The MIME type is set to image/jpeg.
What else could I be forgetting?
Suggestions?