
C# 7 and .NET Core: Modern Cross-Platform Development

SQLite is a small, cross-platform, self-contained RDBMS that is available in the public domain. It is the most common RDBMS for mobile platforms such as iOS (iPhone and iPad) and Android.
SQLite is included in macOS in the /usr/bin/
directory as a command-line application named sqlite3.
You can download a graphical database manager named SQLiteStudio for SQLite here:
You can read about the SQL statements supported by SQLite here:
Create a folder named Chapter08
with a subfolder named Ch08_EFCore
.
Download the NorthwindSQLite.sql
file into the Chapter08
folder.
Start Terminal. Enter commands to change to the Code
folder, change to the directory named Chapter08
, and run the SQLite script to create the Northwind.db
database:
cd Code cd Chapter08 sqlite3 Northwind.db < NorthwindSQLite.sql
Quit Terminal and launch SQLiteStudio.
If you see a warning about not being able to...
Change the font size
Change margin width
Change background colour