Skip to content

Commit e924833

Browse files
committed
chore: default value option
1 parent 30f6e65 commit e924833

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/usage/resources/hooks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public void ConfigureServices(IServiceCollection services)
103103
options =>
104104
{
105105
options.EnableResourceHooks = true; // default is false
106-
options.LoadDatabaseValues = false; // default is true
106+
options.LoadDatabaseValues = false; // default is false
107107
}
108108
);
109109
...
@@ -290,7 +290,7 @@ public void ConfigureServices(IServiceCollection services)
290290
services.AddJsonApi<ApiDbContext>(
291291
options =>
292292
{
293-
options.LoadDatabaseValues = false; // default is true
293+
options.LoadDatabaseValues = false; // default is false
294294
}
295295
);
296296
...

0 commit comments

Comments
 (0)