-
Hi,
I am solving problem with counting results. When I write
`$this->findBy([...])->count()`
it generates
`SELECT * FROM table WHERE ...`
after that it fetch results and counts.
It is not …
-
When Entity is persisted HasMany property does not contain entities (are pushed to variable tracked)
Is posible to add this to method getCollection in HasMany.php?
```php
if ($this->toAdd || $t…
-
Hello,
I have problem with removing entity with not-nullable n:1 relationship.
Entities structure
```
/**
* Episode
* @property int $id {primary}
* @property Project $project {n:1 Projec…
-
Dobrý den,
omlouvám se za triviální dotaz. Bohužel se s tím ale trápím už několik hodin a nevím, jak z toho ven.
Mám tyto dvě entity:
```php
/**
* @property int $id {primary}
* @property s…
-
tenhle řádek nefunguje správně:
https://github.com/zlinskybarcamp/zlinskybarcamp-web/blob/c4d65a25b1ccdf4b31e77c60e696dd2ccecf2a43/app/presenters/SignPresenter.php#L250
**Očekávaný výsledek:** Entit…
-
Hi, searching for a MySQL and SQLite solution. Any plans to add SQLite?
pwFoo updated
4 years ago
-
Hi, I try to upgrade PhpStorm 2019.1.3 to version 2019.2. But there is problem with plugin compatibility, see screenshot.
![IDE and Plugin Updates 2019-08-14 13-28-50](https://user-images.githubuserc…
majun updated
5 years ago
-
`DependencyProvider::injectDependencies()` calls `Container::callInjects()` which is slow - currently are through reflection found all inject methods and properties of every single entity (not for eve…
mabar updated
5 years ago
-
Having similar definition
```php
/**
* @property int $id {primary}
* @property Author $author {m:1 Author::$books}
*/
class Book extends Nextras\Orm\Entity\Entity
{}
```
…
-
**Describe the bug**
Implemented Entity::getter....($value) method is used when entity is persisted. This is confusing as getter should only mutate stored value.
**To Reproduce**
For example try …