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

https://github.com/alivedevil/inkforge


https://github.com/alivedevil/inkforge

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# InkForge

## Modifying EF Model

Apply Migrations for Notes-Database (`InkForge.Data`) or Identity-Database (including Workspaces, `InkForge.Api.Data`)

**InkForge.Data**:

```
dotnet ef migrations add \
--startup-project design/InkForge.Migrations/ \
--project shared/migrations/InkForge.Sqlite/ \
-c InkForge.Data.NoteDbContext -- \
--DbProvider Sqlite --connectionstrings-defaultconnection "Data Source=:memory:"
```

**InkForge.Api.Data**:

```
dotnet ef migrations add \
--startup-project design/InkForge.Migrations/ \
--project migrations/InkForge.Api.Sqlite \
-c InkForge.Api.Data.ApiDbContext -- \
--DbProvider Sqlite --connectionstrings-defaultconnection "Data Source=:memory:"
```