We are developing an E-commerce website using ASP.net and SQL server. The customer can view and order a wide variety of switches and light fittings.
As we need to display images of these products for each category, the number of images we need to display may rise to over 500. We are a bit confused by whether we should save these images as Image type in SQL, or whether it's better to store the path of the image. In the latter case, is storing all images under single folder better?
image
as a datatype is deprecated, you should usevarbinary(max)
) – Aftertaste