Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add helpers for joining on a column using reverse foreign key relation #29

Open
LHolten opened this issue Feb 10, 2025 · 0 comments
Open

Comments

@LHolten
Copy link
Owner

LHolten commented Feb 10, 2025

Instead of

aggregate(|rows| {
    let order_line = OrderLine::join(rows);
    rows.filter_on(order_line.order(), order);
    rows.count_distinct(order_line)
})

It should be possible to write

aggregate(|rows| {
    let order_line = OrderLine::join_on_order(rows, order);
    rows.count_distinct(order_line)
})

or something similar

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant