automapper icon indicating copy to clipboard operation
automapper copied to clipboard

:rocket: Very FAST :rocket: PHP AutoMapper with on the fly code generation

Results 44 automapper issues
Sort by recently updated
recently updated
newest added

Hey, The objective is to make AutoMapper easier to work with for developpers. In this issue I'll try to list all stuff developpers needs to fit their needs when using...

This allow automatically provide an entity from database instead of creating a new one, which will update values instead of generating a new entity Still in draft, not sure how...

I wish we could map nested objects back and forth with AutoMapper. Let's take the example from #14: ```php class User { public string $email; } class Order { public...

Hi all, This is my use case : ```php class Source { #[MapTo(target: 'Target', groups: ['write'])] public string $name; public string $street; public string $zip; public string $city; public string...

question

Hello, I has a problem with Auto Mappers. I try to map my Entity to a Dto. **My context** - Api Platform 3.2 - Symfony 7.1 - Automapper 9.1 **Debuger**...

question

Hello, I'm using the automapper package on a project, and it's generating a lot of deprecations (lot of on symfony/property-info). I try to fix them but i'm not very familiar...

After upgrading the jolicode/automapper package from version 9.2.0 to 9.3.0 (and higher), the behavior when mapping array properties changed. Instead of copying the array as is, each array element is...