Resolve "ASCII export and import for Git" #83

Merged
thorsten merged 30 commits from 48-ascii-export-and-import-for-git into main 2023-02-12 12:55:07 +00:00
Showing only changes of commit 79d8deb837 - Show all commits

View File

@ -157,5 +157,12 @@ public sealed class DataContext : DbContext, IDataContext
}, jsonSettings);
}
public static async Task ImportAndLoadAsync(string path)
{
// We import that JSON data file into an new, empty database file
// at a temporary location. Next, we enable the auto export feature
// to keep the source file up-to-date.
}
#endregion
}