i use StackExchange Data Explorer service with LinqPad and i use this Code for Select all of User:
from m in Users
select m
now i want select all Posts of User
from u in Users
join p in Posts on u.Id equals p.OwnerUserId
select u
but it's not working. Where is my problem?