我需要使用 LINQ 将数据添加到视图模型我的视图模型是:
public class SearchScrapViewModel
{
public WClass wClass{get; set;}
public SClass sClass{get; set;}
public YClass yClass { get; set; }
}
public class WClass
{
public string title { get; set; }
public string link { get; set; }
}
public class SClass
{
public string title { get; set; }
public string link { get; set; }
}
public class YClass
{
public string title { get; set; }
public string link { get; set; }
}
我需要将这 3 个类与 3 个不同的 LINQ 查询一起使用,然后将数据传递给return View(SearchScrapViewModel);
var wikians = //LINQ Logic
select new SearchScrapViewModel
{
wClass.link = link.Attributes["href"].Value, //Error: I am not able to add to wClass
wClass.title = link.InnerText
};
和其他类类似
然后传递给,return View(SearchScrapViewModel);
以便我可以访问此控制器视图中的所有 3 个类
怎么做?