From c349ac2d0e7aa1ccec9aaabe2b2fa054086b7d0d Mon Sep 17 00:00:00 2001 From: Halil ibrahim Kalkan Date: Fri, 7 Sep 2018 19:14:34 +0300 Subject: [PATCH] Remove AddAssemblyOf from docs --- docs/Best-Practices/Entity-Framework-Core-Integration.md | 2 -- docs/Best-Practices/MongoDB-Integration.md | 2 -- 2 files changed, 4 deletions(-) diff --git a/docs/Best-Practices/Entity-Framework-Core-Integration.md b/docs/Best-Practices/Entity-Framework-Core-Integration.md index 0dd6bb63fc..f150bd6f66 100644 --- a/docs/Best-Practices/Entity-Framework-Core-Integration.md +++ b/docs/Best-Practices/Entity-Framework-Core-Integration.md @@ -203,8 +203,6 @@ public class AbpIdentityEntityFrameworkCoreModule : AbpModule options.AddRepository(); options.AddRepository(); }); - - context.Services.AddAssemblyOf(); } } ```` diff --git a/docs/Best-Practices/MongoDB-Integration.md b/docs/Best-Practices/MongoDB-Integration.md index 25b8c9aee3..32eefadd6a 100644 --- a/docs/Best-Practices/MongoDB-Integration.md +++ b/docs/Best-Practices/MongoDB-Integration.md @@ -194,8 +194,6 @@ public class AbpIdentityMongoDbModule : AbpModule options.AddRepository(); options.AddRepository(); }); - - context.Services.AddAssemblyOf(); } } ```