We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A feature that I want to build versus doing the following:
let results = Users::select() .join(Images::table()) .columns(vec!["Users.id", "Users.username", "Images.url"]) .build()?;
Something like this would be amazing:
// Users & Images structs #[derive(GeekQuery)] struct UserImages { #[column("Users.id")] user: i32, #[column("Users.username")] username: String, #[column("Images.url")] image: String }
Nice to have
The text was updated successfully, but these errors were encountered:
GeekMasher
No branches or pull requests
What new feature are you looking for / expect?
A feature that I want to build versus doing the following:
Something like this would be amazing:
Expectations
Nice to have
The text was updated successfully, but these errors were encountered: