如何从列表

时间:2016-07-06 21:36:13

标签: asp.net-mvc linq asp.net-mvc-4 razor

sub_employee是数据库上下文的类。 IM.getAvailableList()从WSDL返回int数组。我想找到SE_ID等于int数组项的模型项列表。下面的操作方法只检索SE_ID。

public ActionResult Ataxi()
    {
        var alist = IM.getAvailableList().Select(x => new sub_employee { SE_ID = x }).ToList();
        return View(alist);
    }

有人可以帮我解决这个问题。谢谢

1 个答案:

答案 0 :(得分:0)

试试这个:

public ActionResult Ataxi(int id)
 {
    var alist = IM.getAvailableList().Select(x => new sub_employee { SE_ID = id}).ToList();
    return View(alist);
    }