From 7828bc5081940165cd662a7989fc3b9f94e81e8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?SAL=C4=B0H=20=C3=96ZKARA?= Date: Wed, 18 Feb 2026 13:53:50 +0300 Subject: [PATCH] Invoke base.OnModelCreating after dynamic config Move base.OnModelCreating(builder) to after builder.ConfigureDynamicEntities() in the docs example. This ensures dynamic entities are configured before the base model creation, reflecting the correct order to register dynamic entities in DbContext.OnModelCreating. --- docs/en/low-code/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/low-code/index.md b/docs/en/low-code/index.md index 5d493a7d9d..08b774034d 100644 --- a/docs/en/low-code/index.md +++ b/docs/en/low-code/index.md @@ -154,8 +154,8 @@ Call `ConfigureDynamicEntities()` in your `DbContext`: ````csharp protected override void OnModelCreating(ModelBuilder builder) { - base.OnModelCreating(builder); builder.ConfigureDynamicEntities(); + base.OnModelCreating(builder); } ````