We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f9a83f + de87fcf commit cdec48bCopy full SHA for cdec48b
docs/en/tutorials/book-store/part-01.md
@@ -114,9 +114,11 @@ public class BookStoreDbContext : AbpDbContext<BookStoreDbContext>
114
115
{{if DB == "Mongo"}}
116
117
-Add a `IMongoCollection<Book> Books` property to the `BookStoreMongoDbContext` inside the `Acme.BookStore.MongoDB` project:
+Add an `IMongoCollection<Book> Books` property to the `BookStoreMongoDbContext` inside the `Acme.BookStore.MongoDB` project:
118
119
```csharp
120
+using Acme.BookStore.Books;
121
+
122
public class BookStoreMongoDbContext : AbpMongoDbContext
123
{
124
public IMongoCollection<Book> Books => Collection<Book>();
0 commit comments