I have the following problem; I have a Rest service with ASP.Net MVC and I am currently receiving the image by base64 and it ends up giving me a km json to save, so I wanted to know how to receive the binary information (as much as possible I would keep it in database as varchar to be able to make a transition not so abrupt) and from there I have to recover it again to the binary to be able to show it on the web / application that I am developing. What I'm going to do is, how should I receive the value? as blob? and how should I store it in the database? (if you can not save it as varchar, I could save it as another value more compatible, I can modify the database if necessary)