From 94f456787a09f25f1c33057afb1898e9c5b15c5f Mon Sep 17 00:00:00 2001 From: Engincan VESKE Date: Tue, 27 May 2025 17:30:49 +0000 Subject: [PATCH] Update part-01.md --- docs/en/tutorials/book-store/part-01.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/en/tutorials/book-store/part-01.md b/docs/en/tutorials/book-store/part-01.md index 61de79d035..b404280994 100644 --- a/docs/en/tutorials/book-store/part-01.md +++ b/docs/en/tutorials/book-store/part-01.md @@ -114,9 +114,11 @@ public class BookStoreDbContext : AbpDbContext {{if DB == "Mongo"}} -Add a `IMongoCollection Books` property to the `BookStoreMongoDbContext` inside the `Acme.BookStore.MongoDB` project: +Add an `IMongoCollection Books` property to the `BookStoreMongoDbContext` inside the `Acme.BookStore.MongoDB` project: ```csharp +using Acme.BookStore.Books; + public class BookStoreMongoDbContext : AbpMongoDbContext { public IMongoCollection Books => Collection();