Hi Imar,
First, thank you for answering all my questions.
I'm having a problem displaying a single review from the Review table.
I'm trying like this:
Code:
using (PlanetWroxEntities myEntities = new PlanetWroxEntities())
{
var review37 = (from r in myEntities.Reviews
where r.Id == 37
select r).Single();
}
but it's not working. It's showing this error on the browser:
Exception Details: System.ArgumentException: An invalid data source is being used for Repeater2. A valid data source must implement either IListSource or IEnumerable.