We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a14c730 commit 67a898aCopy full SHA for 67a898a
1 file changed
README.md
@@ -1,6 +1,14 @@
1
# AutoMapper.ExtendedConverters
2
AutoMapper.ExtendedConverters is a small set of useful AutoMapper custom Type Converters
3
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
12
```cs
13
using System.Diagnostics;
14
using System.Linq;
0 commit comments