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(); } } ```