...

/

Building an Entity Model Using SQLite

Building an Entity Model Using SQLite

Learn about creating entity data models for our practical applications using SQLite, generating entity models, and setting up the SQLite database.

Practical applications usually need to work with data in a relational database or another data store. We will define an entity data model for the Northwind database stored in SQL Server or SQLite. It will be used in most apps we create in subsequent chapters.

Database files

The Northwind4SQLServer.sql and Northwind4SQLite.sql script files are different. The script for SQL Server creates 1313 tables as well as related views and stored procedures. The script for SQLite is a simplified version that only creates 1010 ...