From e663c0e72e6a3c8b9d5f46cbbe0ec7025381b3ce Mon Sep 17 00:00:00 2001 From: anuj2040 <72145365+anuj2040@users.noreply.github.com> Date: Thu, 1 Oct 2020 14:11:38 +0530 Subject: [PATCH] Improved docs --- docs/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/README.md b/docs/README.md index dc60844..898f3f0 100644 --- a/docs/README.md +++ b/docs/README.md @@ -10,6 +10,12 @@ Migrations for Entity Framework 6 SQLite provider - Download the library (using NuGet) - Create a migration configuration - Setup the migration configuration (usually during first context creation) + + **How do I view a table in SQLite?** + - List the tables in your database :. tables + - List how the table looks :. schema tablename + - Print the entire table :. SELECT * FROM Ttablename + - List all of the **SQLite** prompt commands :. help _Example_