No description
Find a file
2024-05-02 21:44:13 +02:00
.config Notes 2024-04-05 12:31:34 +02:00
app Replace ReactiveUI 2024-05-02 21:44:13 +02:00
design/InkForge.Migrations Web Api layout 2024-02-07 22:16:59 +01:00
InkForge.Api Web Api layout 2024-02-07 22:16:59 +01:00
InkForge.Api.Data Notes 2024-04-05 12:31:34 +02:00
migrations/InkForge.Api.Sqlite Api Migrations 2024-02-07 22:41:27 +01:00
refs Remove .Common-project 2024-02-21 02:17:33 +01:00
shared Replace ReactiveUI 2024-05-02 21:44:13 +02:00
.editorconfig Web Api layout 2024-02-07 22:16:59 +01:00
.gitattributes Views 2024-02-09 13:02:20 +01:00
.gitignore Init 2024-02-02 18:46:24 +01:00
Directory.Build.props Review requirement of Microsoft.Extensions.Hosting 2024-02-08 01:19:26 +01:00
Directory.Packages.props Replace ReactiveUI 2024-05-02 21:44:13 +02:00
InkForge.sln Remove .Common-project 2024-02-21 02:17:33 +01:00
LICENSE Init 2024-02-02 18:46:24 +01:00
README.md Api Migrations 2024-02-07 22:41:27 +01:00

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 <Name> \
    --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 <Name> \
    --startup-project design/InkForge.Migrations/ \
    --project migrations/InkForge.Api.Sqlite \
    -c InkForge.Api.Data.ApiDbContext -- \
    --DbProvider Sqlite --connectionstrings-defaultconnection "Data Source=:memory:"