User Interface : Bounded contexts
A Bounded Context is a Domain-Driven Design (DDD) concept that represents a distinct business domain or subdomain within your application. Each bounded context has its own set of Domain, Application, Persistence and (optional) Presentation projects.
Create and edit form
| Field | Description |
|---|---|
| Name | The name of the Bounded Context using PascalCase format. It will be automatically converted to PascalCase if necessary. This will be used as the suffix for the namespace depending on the project type. |
| Generate Blazor Server presentation | Indicates whether a Blazor Server presentation project should be generated for this bounded context. |
| Generate Blazor WebAssembly presentation | Indicates whether a Blazor WebAssembly presentation project should be generated for this bounded context. If checked, it will automatically check and disable the Generate Minimal Api presentation checkbox as it is required to enable CRUD operations. |
| Generate Minimal Api presentation | Indicates whether a Minimal API presentation project should be generated for this bounded context. |