ユーザー名とそのコメント、およびユーザー名の下の各コメントの添付ファイルを表示するために、データ リストを使用したいと考えています。
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();
}