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
parent
commit
586602baa9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/en/tutorials/modular-crm/part-05.md

2
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; }

Loading…
Cancel
Save