我有一种方法可以为我提供用户的 groupID,然后我想根据用户的 GroupID 获取新闻。
public IEnumerable<News> Getnews(int GroupID)
{
Expression<Func<News, bool>> constraint = null;
constraint = e => e.GroupID.Equals(GroupID);
return newsRepository.GetMany(constraint);
}
这里我调用上面的方法:
News news = newsService.Getnews(GroupID);
这是错误:
无法将类型“
System.Collections.Generic.IEnumerable<MeetingBoard.Model.News>
”隐式转换为“MeetingBoard.Model.News
”。存在显式转换(您是否缺少演员表?)