0
with this controller:
public ActionResult Create([Bind(Include = "ImagemId,Image,ImagemTipo")]Imagem imagem,List <HttpPostedFileBase> upload)
{
if(upload != null && upload.Count> 0) {
foreach (HttpPostedFileBase file in upload)
{
var arqImagem = new Imagem
{
ImagemTipo = file.ContentType
};
using (var reader = new BinaryReader(file.InputStream))
{
arqImagem.Image = reader.ReadBytes(file.ContentLength);
}
imagem.Image = arqImagem.Image;
imagem.ImagemTipo = arqImagem.ImagemTipo;
db.Imagems.Add(imagem);
db.SaveChanges();
}
}
return View(imagem);
}
I got this error: that I couldn’t solve
Thanks, I got it solved. How do I proceed? how to close the question?
– Rafael G
@Rafaelg, here you only need to accept the answer you think best, it is not necessary to close. You can also give a UP Vote to those who helped you. :)
– George Wurthmann