Browse Source
Merge pull request #20550 from dgnyldrm7/dgn-20525
Update all documents H1 tags
pull/20551/head
SALİH ÖZKARA
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with
9 additions and
9 deletions
docs/en/framework/architecture/best-practices/application-services.md
docs/en/framework/architecture/best-practices/data-transfer-objects.md
docs/en/framework/architecture/best-practices/domain-services.md
docs/en/framework/architecture/best-practices/entities.md
docs/en/framework/architecture/best-practices/entity-framework-core-integration.md
docs/en/framework/architecture/best-practices/index.md
docs/en/framework/architecture/best-practices/module-architecture.md
docs/en/framework/architecture/best-practices/mongodb-integration.md
docs/en/framework/architecture/best-practices/repositories.md
@ -1,4 +1,4 @@
# # Application Services Best Practices & Conventions
# Application Services Best Practices & Conventions
* **Do** create an application service for each **aggregate root** .
@ -1,4 +1,4 @@
# # Data Transfer Objects Best Practices & Conventions
# Data Transfer Objects Best Practices & Conventions
* **Do** define DTOs in the **application contracts** package.
* **Do** inherit from the pre-built **base DTO classes** where possible and necessary (like `EntityDto<TKey>` , `CreationAuditedEntityDto<TKey>` , `AuditedEntityDto<TKey>` , `FullAuditedEntityDto<TKey>` and so on).
@ -1,4 +1,4 @@
# # Domain Services Best Practices & Conventions
# Domain Services Best Practices & Conventions
### Domain Service
@ -1,4 +1,4 @@
# # Entity Best Practices & Conventions
# Entity Best Practices & Conventions
### Entities
@ -1,4 +1,4 @@
# # Entity Framework Core Integration Best Practices
# Entity Framework Core Integration Best Practices
> See [Entity Framework Core Integration document ](../../data/entity-framework-core ) for the basics of the EF Core integration.
@ -1,4 +1,4 @@
# # Module Development Best Practices & Conventions
# Module Development Best Practices & Conventions
### Introduction
@ -1,4 +1,4 @@
# # Module Architecture Best Practices & Conventions
# Module Architecture Best Practices & Conventions
### Solution Structure
@ -1,4 +1,4 @@
# # MongoDB Integration
# MongoDB Integration
* Do define a separated `MongoDbContext` interface and class for each module.
@ -1,4 +1,4 @@
# # Repository Best Practices & Conventions
# Repository Best Practices & Conventions
### Repository Interfaces