From 43726216344355a99efe4f8d21d330203e4b7629 Mon Sep 17 00:00:00 2001 From: Mark J Price Date: Sat, 7 Jan 2023 12:52:39 +0000 Subject: [PATCH] Add link to command-lines --- README.md | 4 ++++ docs/command-lines.md | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 92cb9d6..1900c2d 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,10 @@ If you have Visual Studio 2022 for Windows and Visual Studio Code and its C# ext - [/vs4win](/vs4win): Visual Studio 2022 for Windows solution files and projects for each chapter - [/vscode](/vscode): Visual Studio Code workspace files and projects for each chapter +## Command-Lines + +To make it easier to enter commands at the prompt, the [Command-Lines](docs/command-lines.md) page lists all commands as a single line that can be copied and pasted. + ## Sibling books ![Sibling books](images/B18857_01_01.png) diff --git a/docs/command-lines.md b/docs/command-lines.md index 359a6e7..6d5381b 100644 --- a/docs/command-lines.md +++ b/docs/command-lines.md @@ -26,7 +26,7 @@ To make it easier to enter commands at the prompt, this page lists all commands - [Page 350 - .NET Upgrade Assistant](#page-350---net-upgrade-assistant) - [Chapter 10 - Working with Data Using Entity Framework Core](#chapter-10---working-with-data-using-entity-framework-core) - [Page 440 - Creating the Northwind sample database for SQLite](#page-440---creating-the-northwind-sample-database-for-sqlite) - - [Page 452 - Setting up the dotnet-ef too](#page-452---setting-up-the-dotnet-ef-too) + - [Page 452 - Setting up the dotnet-ef tool](#page-452---setting-up-the-dotnet-ef-tool) - [Page 453 - Scaffolding models using an existing database](#page-453---scaffolding-models-using-an-existing-database) - [Chapter 11 - Querying and Manipulating Data Using LINQ](#chapter-11---querying-and-manipulating-data-using-linq) - [Page 503 - Building an EF Core model](#page-503---building-an-ef-core-model) @@ -252,7 +252,7 @@ Creating the Northwind SQLite database: sqlite3 Northwind.db -init Northwind4SQLite.sql ``` -## Page 452 - Setting up the dotnet-ef too +## Page 452 - Setting up the dotnet-ef tool Listing installed `dotnet` global tools: ```