Posts by Rafael G • 13 points
5 posts
-
0
votes1
answer50
viewsQ: Ambiguity error Asp.net mvc
with this controller: public ActionResult Create([Bind(Include = "ImagemId,Image,ImagemTipo")]Imagem imagem,List <HttpPostedFileBase> upload) { if(upload != null && upload.Count> 0)…
-
0
votes0
answers38
viewsQ: How to pass Image by Image to add to the database?
I’m trying to add image to the database, how do I temporarily add object by object up, varying the object according to which index you upload? as I tried to do on line 7 I know there are…
-
0
votes1
answer49
viewsQ: How to upload images(several) to the Asp.net database
I have a code in asp.net which aims to upload an image to the database, and I need to adapt it in order to move several up, only I have no idea how to do that. Follows the present code: Model public…
-
0
votes3
answers1817
viewsA: Should I declare Get’s and Set’s at UML?
Friend would not be wrong but.... I consider that you must maintain a certain level of abstraction in uml, for a simple reason, almost ngm creates get set in hand (ide resource), and you already…
-
0
votes0
answers162
viewsQ: Why are these errors appearing in Razor when compiling the project?
Changes made by me @model Pessoa; // já tentei module3.Models.Pessoa e todas as variacoes possiveis @{ ViewData["Title"] = "Pessoa"; } h2> @ViewData["Title"]</h2> <p>Name: @model.Nome…