Skip to content

Commit 67a898a

Browse files
author
Dmitry Panyushkin
authored
Update README.md
1 parent a14c730 commit 67a898a

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# AutoMapper.ExtendedConverters
22
AutoMapper.ExtendedConverters is a small set of useful AutoMapper custom Type Converters
33

4+
__ListConverter__ and more general __CollectionConverter__ are usefull for updating data in existing collections.
5+
6+
For example, we have list of entites from database and it's modified version from client.
7+
Then with `ListConverter` we can update all database entities from client objects with same `Id`.
8+
9+
__CompiledConverter__ is more performant version of default AutoMapper converter for plain objects.
10+
It uses compiled Expressions behind the scenes. But it not supports custom conversion for specific properties.
11+
412
```cs
513
using System.Diagnostics;
614
using System.Linq;

0 commit comments

Comments
 (0)