Browse Source
Merge pull request #23446 from abpframework/EngincanV-patch-1
Fix wrong dbcontext naming in the modular-crm tutorial
pull/23447/head
Berkan Sasmaz
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
docs/en/tutorials/modular-crm/part-05.md
|
|
|
@ -167,7 +167,7 @@ The `ReplaceDbContext` attribute allows the use of the `ModularCrmDbContext` cla |
|
|
|
````csharp |
|
|
|
public class ModularCrmDbContext : |
|
|
|
AbpDbContext<ModularCrmDbContext>, |
|
|
|
IProductsDbContext, |
|
|
|
ICatalogDbContext, |
|
|
|
IOrderingDbContext //NEW: IMPLEMENT THE INTERFACE |
|
|
|
{ |
|
|
|
public DbSet<Product> Products { get; set; } |
|
|
|
|