I have seen other questions about this, but I have not seen a complete solution for this.
I am using ASP.NET MVC with the Entity Framework, and I have a SQL Server database using an image datatype.
View:
<% foreach (var v in (IEnumerable<MyNamespace.Models.MyObject>)ViewData.Model) { %>
<span>
<%= v.Name %>
</span>
<br />
<span>
<%= v.Description %>
</span>
<br />
<!-- Display image here -->
<% } %>
Controller:
public ActionResult Index() {
ViewData.Model = _db.MyObject.ToList();
return View();
}
What do I need to do in my view and in my controller to insert my image while doing my best to stay with the principles of ASP.NET MVC?
What I have so far:
View:
<img src="<%= Url.Action( "ShowImage", "Controller", new { id = v.ID } ) %>" />
Controller:
public ActionResult ShowImage(int id) {
}
This is what I have so far, but I could be way off. It seems like there should be a much easier method to do this.
