I have a question about how to return the selected dropdownbox value to a Controller.
The problem is that I use 2 different models. I'll try to explain.
For this usecase I use the following entity's in the database: Projects and Courses. Projects has a number of attributes and navigational properties. One of the navigational properties is Courses.
In the View it shows a dropdownbox of all the existing courses in the database. So what I would like to do is to select a Course and then add it to the project.(using it's ID) But I can't figure out how to return the selected value to the Controller.
Thanks!