Bravo3\Orm\KeySchemes\StandardKeyScheme::getEntityKey PHP Method

getEntityKey() public method

Return the key for an entity document
public getEntityKey ( string $table_name, string $id ) : string
$table_name string Table name
$id string Entity ID
return string
    public function getEntityKey($table_name, $id)
    {
        // doc:article:54624
        return static::ENTITY_NAMESPACE . $this->delimiter . $table_name . $this->delimiter . $id;
    }