我正在努力解决以下问题。
public class Competition
{
public int Id { get; set; }
public string Name { get; set; }
public IList<ResultInfo> ResultInfos { get; set; }
public IList<Event> ChildEvents { get; set; }
}
public class ResultInfo
{
public int Id { get; set;}
public string ResultInfoName { get; set;}
public int Season { get; set; }
}
public class Event
{
public int Id { get; set; }
public string EventName { get; set; }
public IList<ResultInfo> ResultInfos { get; set; }
}
我正在尝试如下查询,以尝试从比赛和活动中获取“2013”赛季的结果信息。如果有人知道,请指教。
if (year.HasValue)
{
model = model.Where(x => x. ??
}