Another solution would be if I could add a relation between an Entity and a TypedView. Then the query would be something like this:
SELECT Customers.*
FROM Customers
INNER JOIN v_Orders ON Customers.CustomerId = v_Orders.CustomerId
WHERE v_Orders.order_id = @id