AntipodTX
AntipodTX
@BladeMight да, спасибо, работает! только единственное - в приложении галка не меняется, т.е. открываешь приложение - автозамена выглядит включённой, а на самом деле нет, так как я отключил её комбинацией...
Хотелось бы задонатить конкретно это фичу, если есть такая возможность
Same issue here. ### My case: I map the DTO, containing some references as integer IDs to the Doctrine Entity, containing related entities of the different types - so i...
@MrMeshok Thank you for your advice! As i see, it should not be difficult to override the `TransformerFactory` in Symfony - the automapper bundle already implements a `automapper.transformer_factory` tag for...
In the concrete described case, it will work, yes, because that is what i am doing right now (simplified code): ```php use AutoMapper\Transformer\PropertyTransformer\PropertyTransformerInterface; use AutoMapper\Transformer\PropertyTransformer\PropertyTransformerSupportInterface; interface ParameterizedPropertyTransformerInterface extends PropertyTransformerInterface, PropertyTransformerSupportInterface...
Symfony 7.1.6, same issue. Is there some workaround to bypass that? It is clear that it is possible to define the service in `services.yml`, but it seems to me like...
i faced the same issue, but you can do better than fetch the entity from the database. AutoMapper can map to an existing entity, so what you need is to...
@Korbeil The code that you see above it is a simplified version of the code that i am using in my Transformer. I implemented the feature mentioned [here ](https://github.com/jolicode/automapper/issues/172#issuecomment-2433368973), so...