Hi there,
If you followed the exercises, it should only list the authorized reviews because of the Where clause in the query:
Code:
var allReviews = from review in myEntities.Reviews
where review.Authorized == true
orderby review.CreateDateTime descending
select review;
Repeater1.DataSource = allReviews;
Repeater1.DataBind();
Maybe the missing reviews are not authorized? You can check in the Management section.
Cheers,
Imar