gammelalf

Results 31 issues of gammelalf

Hi, nice project! I just did a small prototype before knowing of this crate, which ended up implementing the same thing as you did. Although mine is just a prototype,...

This is an direct limitation from the orphan rule. But as a result other crates are greatly limited in adding new `FieldType` because the can't work with `Option`.

Only `FieldEq` are implemented for `ForeignModelByField`. It would be more intuitive, if we could forward all `FieldEq` impls from `FF::Type` to `ForeignModelByField`.

When generating the unit struct for a field, `rorm` uses the type specified in its model to populate the `Field::Type` associated type: ```rust struct SomeModel { id: Id, } impl...

`impl for Option` should read `impl for Option` and likewise for the borrowed version

The `and!` and `or!` macro produce a somewhat intimidating error message, when one of its arguments don't impl `Condition`. For easier troubleshooting the message should just point to the violating...

this shouldn't compile ```rust query!(&mut tx, Foo) .condition(Bar::F.baz.equals(baz)) //

this could require rework in migrator and imr

low-priority