From 5c3b8a8b0a685a2094fe62f16904b32bcf71e182 Mon Sep 17 00:00:00 2001 From: Sean Martz Date: Tue, 9 Jul 2024 15:02:36 -0400 Subject: [PATCH] Update README.md more explicit documentation around Generate primary keys --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 63c35a4..a64c248 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,10 @@ This automates the process by just specifying what is equal to each other. Mapper.Initialize(cfg => { cfg.AddCollectionMappers(); +// entity framework cfg.SetGeneratePropertyMaps>(); +// entity framework core +cfg.SetGeneratePropertyMaps>(); // Configuration code }); ```