Is it possible to use a method in stead of a property for an
This works:
HTML.DropDownListFor(x => x.Book,
new SelectList(ViewBag.Books,
"ID",
"Title",
new { @class = "form-control"}))
that I tested does not:
HTML.DropDownListFor(x => x.Book,
new SelectList(ViewBag.Books,
"ID",
"ToString()",
new { @class = "form-control"}))
Is there any way to do this?
I found a workaround for it. For anyone who is interested in it this is what works:
book.cs
View.cshtml: