I'm using azure document db in my ASP.net MVC application.And currently I'm having 2 collections in it which are Employees and Tasks. Currently everything is working fine with document db operations.
But I couldn't find a way to upload multiple images(not multiple images at once ) against a document. eg: assume I need to store 2 employee pictures against a single employee document.
I've read about the azure blob storage and think I can use it for the file uploads.But the thing that I can unable to clarify is how to keep the references of the uploaded files in each employee documents.
Is there any way to do that?