I have ModelView which I have created for purpose to create new record instance via view-- razor form. In controller I need to assign list data to ViewModel; IEnumerable and then pass this model along with with list data (of CategoryType) which then in view I need to populate in drop-down list, followed by ID of selected CategoryType send back to controller along with other data.
I have assign IEnumerable value to model in controller but not sure is correct and how to do rest part in view ???
View Model - CompanyProfileModelView
public class CompanyProfileModelView
{
    public Company _Company { get; set; }
    public IEnumerable<CategoryType> _CategoryType { get; set; } 
}
Model Class
public class CategoryType
{
    public int CategoryTypeID { get; set; }
    public string CategoryTitle { get; set; }
    public ICollection<Company> Companies { get; set; }
}
Controller Class
 [HttpGet]
    public ActionResult CreateCompany()
    {
        var _listData = _appFunctions.GetAllCategory();
        var _model = new CompanyProfileModelView
        {
            _CategoryType = _listData
            ??????????????
        };
        return PartialView("_CreateNewCompanyPartial", _model);
    }
    [HttpPost]
    public ActionResult CreateCompany(CompanyProfileModelView _model)
    {
        try
        {
            if (ModelState.IsValid)
            {
                //my code will be here to read for input data
            }
        }
        catch (DataException ex)
        {
            ModelState.AddModelError("", "Unable To Create New Function Navigation" + ex);
        }
        return RedirectToAction("Home");
    }
View
@model App.DAL.Model.CompanyProfileModelView
 @using (Html.BeginForm("CreateCompany", "CompanyProfile", FormMethod.Post, new { id = "NewFunctionNavigationForm" }))
{
 <div class="form-group">
        @Html.LabelFor(@model => @model._Company.CompanyName, new { @class = "control-label col-md-2" })
        <div class="form-group">
            @Html.EditorFor(@model =>@model._Company.CompanyName)
            @Html.ValidationMessageFor(@model=>@model._Company.CompanyName)
        </div>
    </div>
    <div class="form-group">          
        // need help here for dropdown of CategoryType list  
    </div>
    <div class="form-group">
       <div class="col-md-offset-2 col-md-10">
          <input type="submit" value="Create" class="btn btn-default" />
        </div>
    </div>
}
 
    