I am about to create an ASP.NET MVC app which will have over 2000 products and each products will approx 20 photos. The app will be asp.net mvc app and
I am using sql server 2008 r2 to manage my data. which way is the better approcah here;
- Uploading pictures to a path and storing their file names to database in order to be able to make a relation to each other.
- Storing pictures inside the database as byte as well and retreive them from there when needded.