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();