Anton Tsitou

Results 172 comments of Anton Tsitou

Please explain what usecase is covered by this change? https://github.com/cycle/orm/blob/master/src/Factory.php#L177 Scopes were attached by default at source level - so all repositories were reading them correctly. Select was created without...

Can you provide isolated example or test case? I'm not sure what Base model is and what are you querying from database.

It should be pretty easy (except the edge cases) since you can feed the schema into schema-builder from any source.

The identity columns might be not supported via declarative form. Try using native queries. We will extend declarative builder to support user types later. ```php $this->database()->execute(); ```

This is already possible for FROM part (though API is not publicly announced) , for the JOIN part see #23

Yes, this will work :) Later update is require for JOINs.

Привет, ответим на след неделе. Извиняюсь за задержку.

Привет, из-за событий в стране Тикет потерялся. Внесём на след неделю, тут все сложно.

Привет, грамотным местом будет использовать DatabaseInterface и реализовать свой способ работы с драйверами. https://github.com/spiral/database/blob/master/src/Database.php#L98 Придется заэкспозить transactionLevel из драйвера - https://github.com/spiral/database/blob/master/src/Driver/Driver.php#L79 (можешь сделать ПР для get метода). И не возращать...

Привет, мы используем одну корутину в долгоживущих приложениях (смотри модель РР), но идея очень хорошая. 1) Можешь создать тикет в spiral/database, я думаю что это будет новый метод (createTransaction) и...