diff --git a/docs/en/Tutorials/Part-7.md b/docs/en/Tutorials/Part-7.md index d925eb5e17..85234be21f 100644 --- a/docs/en/Tutorials/Part-7.md +++ b/docs/en/Tutorials/Part-7.md @@ -67,7 +67,7 @@ Then open the `BookStoreDbContextModelCreatingExtensions` class in the same proj ````csharp builder.Entity(b => { - b.ToTable(BookStoreConsts.DbTablePrefix + "Books", + b.ToTable(BookStoreConsts.DbTablePrefix + "Authors", BookStoreConsts.DbSchema); b.ConfigureByConvention();