tags:

views:

33

answers:

2

Here so much about this site so I'll try my luck if you could help me enlighten in my problem.

What would be the best options to handle images in .Net 3.5 framework and SQL Server for a WINAPP that is incorporated with WCF? I need use this images for transactions inside the system.

A: 

The most efficient way to send images over WCF is to use streaming. (Google for WCF Streaming).

For storing images in SQL Server there are several options, data type varbinary(max) has worked well for us.

Shiraz Bhaiji
A: 

what i meant is there are process in th system that requires an image data. For now, I store the image in the database by converting it to a base64string and saving it. When wcf is implemented the retrieval of data with images is slow.

hunny
John Saunders