28

我想使用数据列表来显示用户名下方的每个评论的用户名及其评论和附件。

我有一个ReviewList用于显示评论的用户控件efiles。但我在这一行(s.tblDraft.Comments)有错误,下面有一个错误:

The non-generic type 'System.Collections.IEnumerable' cannot be used with type arguments

请帮忙。问题是什么?

private void Displayuser()
{
    var reviews =
      (from s in _DataContext.tblSends
       from u in _DataContext.Users

       where (s.DraftId == _Draftid) && (s.ToEmailId == u.ID)
       orderby u.Name
       select new
{
    userid = u.ID,
    username = u.Name,
    comments =s.tblDraft.Comments,
    w = s.tblDraft.Comments.SelectMany(q => q.CommentAttaches)

}).Distinct();

    DataList1.DataSource = reviews;
    DataList1.DataBind();

    var theReview = reviews.Single();

    DisplayReviews(theReview.comments, theReview.w);
}

private void DisplayReviews(IEnumerable<Comment> comments,
     IEnumerable<CommentAttach> w)
{
    ReviewList reviewList = (ReviewList)DataList1.FindControl("ReviewList1");
    reviewList.Comments = comments;
    reviewList.CommentAttachs = w;
    reviewList.DataBind();
}
4

2 回答 2

68

编译器看到的类型System.Collections.IEnumerable是非通用 IEnumerable。您导入了该命名空间,因此这是编译器认为您正在尝试使用的类型。

您尝试使用的类型是System.Collections.Generic.IEnumerable<T>. 添加该名称空间的导入,并且应该编译。

于 2013-01-20T19:04:06.860 回答
4

您需要添加命名空间的导入:

using System.Collections.Generic;
于 2021-02-20T14:10:28.700 回答