* The provided SQLite3 database contains the required schemas, but no data and can be reset to if required. * Remove all references to PostgreSQL in documentation and configuration. * Replace native sqlite3 command with a console app to remove dependency on SQLite3 installation.
5 lines
120 B
C#
5 lines
120 B
C#
using table.lib;
|
|
|
|
using var context = new PostsDbContext();
|
|
Table<Post>.Add(context.Posts.ToList()).ToConsole();
|