Giter Site home page Giter Site logo

Comments (8)

ElGigi avatar ElGigi commented on August 23, 2024

The same problem for oneToOne relationship.

A track for resolution?

class OneToOne extends DeletableRelationship
{
    protected function stitchIntoRecord(
        Record $nativeRecord,
        array $foreignRecords
    ) : void {
        $nativeRecord->{$this->name} = false;
        if ($this->onDelete === static::SET_NULL) {
            $nativeRecord->{$this->name} = null;
        }

        foreach ($foreignRecords as $foreignRecord) {
            if ($this->recordsMatch($nativeRecord, $foreignRecord)) {
                $nativeRecord->{$this->name} = $foreignRecord;
            }
        }
    }

    // ...
}

So if reference column can be null, the value must not be false but null?

from atlas.orm.

pmjones avatar pmjones commented on August 23, 2024

/me ponders

Can you tell me a little about the domain object that is being built from the record?

from atlas.orm.

ElGigi avatar ElGigi commented on August 23, 2024

Yes.

For example:

class Author
{
    // ...

    public function __construct(?int $author_id, ?string $name)
    {
        $this->author_id = $author_id;
        // ...
    }
}

class Thread
{
    public function __construct(?int $article_id, ?string $title, ?string $content, ?Author $author)
    {
        $this->article_id = $article_id;
        // ...
    }
}

And the relationships in DataSource:

class AuthorRelationships extends MapperRelationships
{
    protected function define()
    {
        $this->oneToMany('threads',
                         Thread::CLASS,
                         [
                             'author_id' => 'author_id',
                         ]);
    }
}

class ThreadRelationships extends MapperRelationships
{
    protected function define()
    {
        $this->manyToOne('author',
                        Author::CLASS,
                        [
                            'author_id' => 'author_id',
                        ])
             ->onDeleteSetNull();
    }
}

from atlas.orm.

pmjones avatar pmjones commented on August 23, 2024

And the problem is that sometimes, when you fetch a ThreadRecord from the data source with('author'), the author field is false because there is no related author row?

from atlas.orm.

ElGigi avatar ElGigi commented on August 23, 2024

Yes is that.
If no author, for anonymous thread (for example), the field is false instead null.

from atlas.orm.

pmjones avatar pmjones commented on August 23, 2024

All right, I think I understand now.

Some background: the false is there to indicate that you tried to fetch a relationship, but there was nothing related (as vs null which means you never tried to fetch the relationship in the first place).

The most expedient solution I can think of is to modify Atlas Transit to accept both "false" and "null" to mean "null" when the target domain property is an object. Would that work for you here?

from atlas.orm.

ElGigi avatar ElGigi commented on August 23, 2024

Yes of course, that will works for me if it's implemented in Transit.

from atlas.orm.

pmjones avatar pmjones commented on August 23, 2024

@ElGigi please examine atlasphp/Atlas.Transit#7 and see if it works for you!

from atlas.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.