tags:

views:

6

answers:

0

In my C# project I save and retrieve lots of data to and from an SQL database using wcf services / linq to sql. I stumbled upon a need to save a list of and which are pixel values of images. The pix values are later used for references to their brightness in web applications. I don't want to save the entire image in the db, but only the file path string and the array of pixel values.

So the problem is how to save List into an SQL db? What SQL datatype to use? Thanks a lot for suggestions.