I have a SQL Image column that displays an image using EmbeddableImageRenderer like this:
Infragistics.Win.EmbeddableImageRenderer imgEditor = new Infragistics.Win.EmbeddableImageRenderer(); e.Layout.Bands[0].Columns["Photo"].Editor = imgEditor;
I have some data from another table that is created by someone else that stores the image in SQL Server as nvarchar(max).
The grid errors when binding to the nvarchar(max). How can I get it bind to the nvarchar(max) and display the photo?
Thanks.Dave
Scratch that query I have just checked the DB and they are storing the path rather than the image.