Giter VIP home page Giter VIP logo

Comments (8)

tyt2y3 avatar tyt2y3 commented on September 6, 2024 3

I think for the average case where there is only one column as primary key, adding one container layer is counter intuitive.
But perhaps, we can make an associated type def in the PrimaryKeyTrait

impl PrimaryKeyTrait for PrimaryKey {
    type ValueType = i32;
}

from sea-orm.

billy1624 avatar billy1624 commented on September 6, 2024

How we handle composite primary keys?

from sea-orm.

tyt2y3 avatar tyt2y3 commented on September 6, 2024

Composite primary keys can't be auto generated, and so it's less important. But I think the type could be a tuple, if we really try to support it. Let's leave it and return 0 for now.

from sea-orm.

billy1624 avatar billy1624 commented on September 6, 2024

I think this issue can be related to #101 if we have an attribute primary_key. Then, we can derive a struct to represent value of returning columns (primary keys).

from sea-orm.

billy1624 avatar billy1624 commented on September 6, 2024

And btw... returning statement in Postgres can return multiple columns at once.
https://www.postgresql.org/docs/current/dml-returning.html

from sea-orm.

billy1624 avatar billy1624 commented on September 6, 2024

Adding type def is a good suggestion

from sea-orm.

tqwewe avatar tqwewe commented on September 6, 2024

I've had a dive into the code for this.. it seems like adding ValueType on the PrimaryKeyTrait would work great!
Then perhaps InsertResult can be given a generic:

pub struct InsertResult<T> {
    pub last_insert_id: T,
}

And exec on Insert could return the value type as the generic type:

impl Future<
  Output = Result<InsertResult<<A::Entity as EntityTrait>::PrimaryKey::ValueType>, DbErr>
>

This what I'm thinking would be the best way..

from sea-orm.

tyt2y3 avatar tyt2y3 commented on September 6, 2024

Agreed.

from sea-orm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.