ormx icon indicating copy to clipboard operation
ormx copied to clipboard

bringing orm-like features to sqlx

Results 24 ormx issues
Sort by recently updated
recently updated
newest added

I'm interested why ormx chose to return boxed future and stream instead of `impl Future` and `impl Stream` respectively?

As far as I know, it is generally considered best practice to enforce that the ID column will always be generated. The `GENERATED ALWAYS` modifier allows this. Additionally, the `AS...

documentation

I'm trying to use ormx and I can't even get the example to run. If I use the schema ``` create table users ( id serial4 primary key, first_name varchar,...

I added a new feature called `serde` to derive `serde`'s `Serialize` and `Deserialize` traits for the generated insert structs when enabled. This way, these structs can be easily used in...

I think it would be valuable to add a mechanism for partial updates to `ormx` similar to what the `AsChangeset` derive from [diesel](https://diesel.rs/guides/all-about-updates.html#aschangeset) does. There are however various possible solutions,...

Sorry for not having a more minimal example (I might post one soonish) but this should be fairly straightforward if not minimal. This code gives : `wildcard overrides are only...