sea-orm icon indicating copy to clipboard operation
sea-orm copied to clipboard

🐚 An async & dynamic ORM for Rust

Results 402 sea-orm issues
Sort by recently updated
recently updated
newest added

## Description ```rust struct VehicleVerify { ... pub service_kinds: Vec, // ServiceKind is a enum defined in the database } ``` in 0.12.15, the query builder output is: `CAST("vehicle_verify"."service_kinds" AS...

Related to this issue: https://github.com/SeaQL/sea-orm/issues/2376

## Description Using `order_by_desc` is not working with `cursor_by`. ## Steps to Reproduce ```rust // Returned values are `by_asc` even if `by_desc` is specified let result = thread::Entity::find() .cursor_by(thread::Column::Id) .order_by_desc(thread::Column::Id)...

A-docs
A-pagination

Under this section, the following example fails to compile because `f32` does not implement `Eq`: https://www.sea-ql.org/SeaORM/docs/generate-entity/entity-structure/#column-type > If you need your JSON field to be deserialized into a struct. You...

Addresses #2320. My team is working on a workspace project. To make sure generated models are always the same, we decided to make `sea-orm-cli` a member crate. You may find...

## Description When `ConnectOptions` is converted to `sqlx::pool::PoolOptions`, the `max_lifetime` and `idle_timeout` fields are set only if the value provided is not `None`: https://github.com/SeaQL/sea-orm/blob/b68e770f973adea8651420c0865f697bca2f5b9b/src/driver/sqlx_common.rs#L54-L56 https://github.com/SeaQL/sea-orm/blob/b68e770f973adea8651420c0865f697bca2f5b9b/src/driver/sqlx_common.rs#L60-L62 However, `None` is a valid...

## PR Info - Test case for: #1920 - Dependencies: None - Dependents: None ## Changes - [ ] Test case for Issue #1920

HI ,There is support like https://freesql.net/ Is there a functional plan for AOT?

## Description I have two tables in my schema which depend on each other. One of them is `site`, a "main" table which has many foreign keys pointing to `site.site_id`....

### Discussed in https://github.com/SeaQL/sea-orm/discussions/2356 Originally posted by **kudlatyamroth** September 13, 2024 I have struct like this: ``` #[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, FromJsonQueryResult)] pub struct Component { base_price: Decimal,...

good first issue
A-type-map
C-enhancement