如何在DropDownList

时间:2018-06-19 11:54:05

标签: c# asp.net-mvc-5 cascadingdropdown

在这里我使用Mvc在这里我要在dropdownList中绑定2个数据。对于绑定数据,我创建了一个Hybrid类

public class HybridClass
    {
        public IEnumerable<Employee> GetEmployee { get; set; }
        public IEnumerable<Country> GetCountry { get; set; }
    }

该类在我的ctrl中绑定为

HybridClass Objhybrid = new HybridClass();

public async Task<ActionResult> Crude()
            {
                IEnumerable<Employee> emp = await Task.Run(() => ObjRepo.GetEmployee());
                IEnumerable<Country> cntry = await Task.Run(() => ObjRepo.GetCountrylist());
                Objhybrid.GetEmployee = emp;
                Objhybrid.GetCountry = cntry;
                return View(Objhybrid);

在这里,我如何在DropdonList中绑定数据以便在此处获取数据

@Html.DropDownListFor(cnt=>cnt.GetCountry,Model=>Model.)

0 个答案:

没有答案