Skip to content
New issue

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

Insert an active model and get back the last insert id doesn't work with autoincrement #2151

Open
Razzwan opened this issue Mar 12, 2024 · 0 comments

Comments

@Razzwan
Copy link

Razzwan commented Mar 12, 2024

Description

Insert an active model and get back the last insert id doesn't work with autoincrement id.

Steps to Reproduce

  1. Create migration and generate a model
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
#[sea_orm(table_name = "fruit")]
pub struct Model {
    #[sea_orm(primary_key)]
    pub id: i32,
}
  1. Insert an active model and get back the last insert id using static method
let pear = fruit::ActiveModel {
    ..Default::default() // just only autoincremented id here
};

let res: InsertResult = Fruit::insert(pear).exec(db).await?;

Expected Behavior

It must insert and return saved id

Actual Behavior

It leads an error:

"Custom Error: Custom Error: Attribute id is NotSet"

Reproduces How Often

All the time

Workarounds

Don't use static method and use such one instead:

let pear = fruit::ActiveModel {
    ..Default::default()
};

let pear: fruit::Model = pear.insert(db).await?;

Reproducible Example

  1. Run migration:
use sea_orm_migration::prelude::*;

#[derive(DeriveMigrationName)]
pub struct Migration;

#[async_trait::async_trait]
impl MigrationTrait for Migration {
    async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> {
        manager
            .create_table(
                Table::create()
                    .table(Fruit::Table)
                    .if_not_exists()
                    .col(
                        ColumnDef::new(Fruit::Id)
                            .integer()
                            .not_null()
                            .auto_increment()
                            .primary_key(),
                    )
                    .to_owned(),
            )
            .await
    }

    async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
        manager
            .drop_table(Table::drop().table(Fruit::Table).to_owned())
            .await
    }
}

#[derive(DeriveIden)]
enum Fruit {
    Table,
    Id,
}
  1. Generate a model based on migration above

  2. Then try to insert entity using generated model:

let pear = fruit::ActiveModel {
    ..Default::default() // just only autoincremented id here
};

let res: InsertResult = Fruit::insert(pear).exec(db).await?;

Versions

0.12.14

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant