User-173333858 posted
I am new to MVC, EF. My MVC project has a view that displays data that I get via EF. So, that model subset is already created. But after the user sees this form, I need to add an additional field 'COMMENTS' to his form, and have the user submit it. I created
a separate Model for this 'comments' field, but am unable to include more than 1 model in this view page, something like this (which will look as a huge blunder to people who know this well, I am not one of them yet :) )
@model IEnumerable<Admin_Tool.Func_EmpDetails_Result>
@model Admin_Tool.Models.Form
I think the best way would be to create another Model Class with these 2. Let me know if this is correct? Or is there a better way.
Thanks!
-RDesh