I have 3 tables.
Users table (Id, name, emal)
Reviews table (Id, title, body, postDate)
Following table (leader, Follower) : both leader and follower are
UserId, you can follow other users, you will are someone's follower,
you can see their last 3 month reviews.
I try to get all the reviews that your leaders posted in hte last 3
month.
var reviews = from user in _currentUser.Leaders
select user.Reviews;
I am getting back a list of Ilist<review>. it is definitely not
correct. please help me out, thank you.
--
You received this message because you are subscribed to the Google Groups
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/nhusers?hl=en.