如何在我的action方法中创建空的ToPagedList项并将它们传递给我的视图

时间:2013-11-19 09:41:29

标签: asp.net asp.net-mvc linq entity-framework asp.net-mvc-4

我有以下行动方法: -

public ActionResult Index(string searchTerm = "", int page = 1,bool forIt360only=true)
{
    string withOutSpace = searchTerm.Trim();

    if (forIt360only) 
    {
        populateViewData(repository.FindVMForIT360Only().ToList().Select(a => a.RESOURCEID).ToArray());
        var vm2 = new List<TMSVirtualMachine>(5).ToPagedList(page,5);
        return View(vm2);
    }
 }

对于某个要求,我需要将空的.topaged列表项传递给我的视图。我尝试使用

var vm2 = new List<TMSVirtualMachine>(5).ToPagedList(page,5);

创建5个空项但不起作用。请问任何一个建议吗? 感谢

0 个答案:

没有答案