Good Night! I made a request to my webapi to fetch data in order to use it in a DropDownlist @Html.DropDownList("Id","Descricao")
. In My controller, I can pull results from WebApi in collection, I have dealt with Json and I put it in my product class, which only has Id and Description List<Produto>
How do I, before returning to the view where I'm going to use this list, create an Object in list to link to my view template and be able to use it as a dropdown?