Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/peppapig13132/dotnet-ddd

:cheese: ASP.NET, DDD pattern experience
https://github.com/peppapig13132/dotnet-ddd

asp-net crud-sample ddd-sample

Last synced: 3 days ago
JSON representation

:cheese: ASP.NET, DDD pattern experience

Awesome Lists containing this project

README

        

# .NET | Domain-Driven Design(DDD) | CRUD

### Environment
- .NET 6.0
- MSSQL
- Create a new database: **DDDCRUD**
- Create a new table **Users** with _dbo.Users.sql_.

### 💡 CORS

Focus on _.\dotNetCRUDApplication\Program.cs_ line: 26
```
app.UseCors(policy => policy.AllowAnyHeader().AllowAnyMethod().AllowAnyOrigin());
```

Or run a new browser with this command:
```
C:\Program Files\Google\Chrome\Application>chrome.exe --disable-web-security --user-data-dir="C:\tmpChromeSession
```