PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Dove condizione per la tabella unita in Sequelize ORM

Racchiudi le colonne che fanno riferimento a tabelle unite in $$

A.findAll({
    where: {
        $or: [
            {'$B.userId$' : 100},
            {'$C.userId$' : 100}
        ]
    },
    include: [{
        model: B,
        required: false

    }, {
        model: C,
        required: false
    }]
});