How can I create a list from items in another list?
List<Post> postList = db.Posts.Where(u => u.PostId == postId).ToList();
List<PostView> viewList = db.PostViews.Where(u => u.PostId **** is equal to PostId within postList**** );
I used the ****'s to show where my understanding falls apart.