add `PartialModelTrait` for a part of model
re-export `PartialModelTrait`
cargo fmt
add fn`into_partial_model` on `Select`&`SelectTwo`
add `DerivePartialModel` to impl `PartialModel`
add macro `DerivePartialModel` to `sea-orm`
disambiguate `SelectColumns` function
fix macro error
cargo fmt && cargo clippy
move `SelectColumns` from helper.rs to traits.rs
cargo fmt
Reduce nest hell of load attribute argument fetch
✅ test `DerivePartialModel` input parse
`DerivePartialModel` not derive with generic
fix `DerivePartialModel` code generate error
remove unused use
cargo fmt
add `into_partial_model` for `SelectTwoMany`
32 lines
631 B
Rust
32 lines
631 B
Rust
mod active_enum;
|
|
mod active_model;
|
|
mod active_model_behavior;
|
|
mod attributes;
|
|
mod column;
|
|
mod entity;
|
|
mod entity_model;
|
|
mod from_query_result;
|
|
mod into_active_model;
|
|
mod migration;
|
|
mod model;
|
|
mod partial_model;
|
|
mod primary_key;
|
|
mod relation;
|
|
mod try_getable_from_json;
|
|
mod util;
|
|
|
|
pub use active_enum::*;
|
|
pub use active_model::*;
|
|
pub use active_model_behavior::*;
|
|
pub use column::*;
|
|
pub use entity::*;
|
|
pub use entity_model::*;
|
|
pub use from_query_result::*;
|
|
pub use into_active_model::*;
|
|
pub use migration::*;
|
|
pub use model::*;
|
|
pub use partial_model::*;
|
|
pub use primary_key::*;
|
|
pub use relation::*;
|
|
pub use try_getable_from_json::*;
|