diff --git a/docs/en/UI/Angular/List-Service.md b/docs/en/UI/Angular/List-Service.md
index 2f0eb9fc57..8df8b945d7 100644
--- a/docs/en/UI/Angular/List-Service.md
+++ b/docs/en/UI/Angular/List-Service.md
@@ -201,4 +201,4 @@ You may use observables in combination with [AsyncPipe](https://angular.io/guide
```
-ABP doesn't have a built-in filtering mechanism. You need to implement yourself and handle `filter` property in backend.
+ABP doesn't have a built-in filtering mechanism. You need to implement it yourself and handle the `filter` property in the backend.
diff --git a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/EntityFrameworkCore/MyProjectNameEntityFrameworkCoreTestModule.cs b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/EntityFrameworkCore/MyProjectNameEntityFrameworkCoreTestModule.cs
index 9cf9342994..2f5d456244 100644
--- a/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/EntityFrameworkCore/MyProjectNameEntityFrameworkCoreTestModule.cs
+++ b/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.EntityFrameworkCore.Tests/EntityFrameworkCore/MyProjectNameEntityFrameworkCoreTestModule.cs
@@ -6,7 +6,9 @@ using Microsoft.Extensions.DependencyInjection;
using Volo.Abp;
using Volo.Abp.EntityFrameworkCore;
using Volo.Abp.EntityFrameworkCore.Sqlite;
+using Volo.Abp.FeatureManagement;
using Volo.Abp.Modularity;
+using Volo.Abp.PermissionManagement;
using Volo.Abp.Uow;
namespace MyCompanyName.MyProjectName.EntityFrameworkCore;
@@ -22,7 +24,18 @@ public class MyProjectNameEntityFrameworkCoreTestModule : AbpModule
public override void ConfigureServices(ServiceConfigurationContext context)
{
+ Configure(options =>
+ {
+ options.SaveStaticFeaturesToDatabase = false;
+ options.IsDynamicFeatureStoreEnabled = false;
+ });
+ Configure(options =>
+ {
+ options.SaveStaticPermissionsToDatabase = false;
+ options.IsDynamicPermissionStoreEnabled = false;
+ });
context.Services.AddAlwaysDisableUnitOfWorkTransaction();
+
ConfigureInMemorySqlite(context.Services);
}