After looking at different posts and creating an entity framework code first model using
public byte[] Image { get; set; }
to store my image, I see that the largest size is 8000 bytes and its a varbinary(max)! That seems pretty small even if I modify the image before I store it. Are there any better data types in a db to use for storing images? I read FileStream is better but not sure. Any advice will help!
I've looked at storing the images on disk, but have decided that storing profile pics in a database will be ok because this site has just 1-3 pics per account and the total number of accounts will be however many people register. (probably not that many)