diff --git a/docs/en/Tutorials/Part-1.md b/docs/en/Tutorials/Part-1.md index 7de5e54c16..50d82e4df9 100644 --- a/docs/en/Tutorials/Part-1.md +++ b/docs/en/Tutorials/Part-1.md @@ -230,6 +230,11 @@ namespace Acme.BookStore } public async Task SeedAsync(DataSeedContext context) + { + await CreateBooksAsync(); + } + + private async Task CreateBooksAsync() { if (await _bookRepository.GetCountAsync() > 0) {