This query works great:
var pageObject = (from op in db.ObjectPermissions join pg in db.Pages on op.ObjectPermissionName equals page.PageNa
You must create a new anonymous type:
select new { op, pg }
Refer to the official guide.