├── .devcontainer ├── Dockerfile ├── data │ └── ContosoPizza.dacpac ├── devcontainer.json ├── docker-compose.yml └── scripts │ ├── installSQLtools.sh │ └── postCreateCommand.sh ├── .gitattributes ├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── .tours ├── 1-getting-started.tour ├── 2-existing-databases.tour ├── 3-web-sites.tour ├── 4-database-providers.tour ├── 5-performance-tips.tour └── media │ ├── 1-entity-diagram.png │ ├── 1-products-table.png │ ├── 1-refresh-explorer.png │ ├── 1-sql-server.png │ ├── 1-workspace-with-files.png │ ├── 2-integrated-terminal.png │ ├── 2-models-new-file.png │ ├── 3-integrated-terminal.png │ ├── 4-cosmos-db.png │ ├── 4-ef-core-architecture.png │ ├── 4-integrated-terminal.png │ ├── 4-postgres-output.png │ ├── readme-launch-codespace.gif │ └── readme-launch-codetour.gif ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── notes ├── 1-getting-started │ ├── ContosoPizzaContext.cs │ ├── Customer.cs │ ├── Order.cs │ ├── OrderDetail.cs │ ├── Product.cs │ ├── Program-snippets.cs │ ├── connection-strings.md │ ├── entity-diagram.md │ └── script.md ├── 2-existing-databases │ ├── Customer.cs │ ├── Program.cs │ ├── connection-strings-and-notes.md │ └── script.md ├── 3-web-sites │ ├── notes-and-snippets.md │ └── script.md ├── 4-database-providers │ ├── connection-strings-and-notes.md │ └── script.md ├── 5-performance-tips │ ├── connection-strings-and-notes.md │ └── script.md ├── series-outline.md └── supplemental │ └── script.md └── parts ├── 1-getting-started └── ContosoPizza │ ├── ContosoPizza.csproj │ └── Program.cs ├── 2-existing-databases └── ContosoPizza │ ├── ContosoPizza.csproj │ └── Program.cs ├── 3-web-sites └── ContosoPizza │ ├── ContosoPizza.csproj │ ├── Data │ └── ContosoPizzaContext.cs │ ├── Models │ ├── Customer.cs │ ├── Order.cs │ ├── OrderDetail.cs │ └── Product.cs │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── 4-database-providers └── ContosoPizza │ ├── ContosoPizza.csproj │ ├── Data │ └── ContosoPizzaContext.cs │ ├── Models │ ├── Customer.cs │ ├── Order.cs │ ├── OrderDetail.cs │ └── Product.cs │ └── Program.cs └── 5-performance-tips └── ContosoPizza ├── ContosoPizza.csproj ├── Data └── ContosoPizzaContext.cs ├── Models ├── Customer.cs ├── Order.cs ├── OrderDetail.cs └── Product.cs ├── Pages ├── Customers │ ├── Create.cshtml │ ├── Create.cshtml.cs │ ├── Delete.cshtml │ ├── Delete.cshtml.cs │ ├── Details.cshtml │ ├── Details.cshtml.cs │ ├── Edit.cshtml │ ├── Edit.cshtml.cs │ ├── Index.cshtml │ └── Index.cshtml.cs ├── Error.cshtml ├── Error.cshtml.cs ├── Index.cshtml ├── Index.cshtml.cs ├── Privacy.cshtml ├── Privacy.cshtml.cs ├── Products │ ├── Details.cshtml │ └── Details.cshtml.cs ├── Shared │ ├── _Layout.cshtml │ ├── _Layout.cshtml.css │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── Program.cs ├── Properties └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json └── wwwroot ├── css └── site.css ├── favicon.ico ├── js └── site.js └── lib ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-grid.rtl.css │ ├── bootstrap-grid.rtl.css.map │ ├── bootstrap-grid.rtl.min.css │ ├── bootstrap-grid.rtl.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap-reboot.rtl.css │ ├── bootstrap-reboot.rtl.css.map │ ├── bootstrap-reboot.rtl.min.css │ ├── bootstrap-reboot.rtl.min.css.map │ ├── bootstrap-utilities.css │ ├── bootstrap-utilities.css.map │ ├── bootstrap-utilities.min.css │ ├── bootstrap-utilities.min.css.map │ ├── bootstrap-utilities.rtl.css │ ├── bootstrap-utilities.rtl.css.map │ ├── bootstrap-utilities.rtl.min.css │ ├── bootstrap-utilities.rtl.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap.rtl.css │ ├── bootstrap.rtl.css.map │ ├── bootstrap.rtl.min.css │ └── bootstrap.rtl.min.css.map │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.esm.js │ ├── bootstrap.esm.js.map │ ├── bootstrap.esm.min.js │ ├── bootstrap.esm.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jquery ├── LICENSE.txt └── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/data/ContosoPizza.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.devcontainer/data/ContosoPizza.dacpac -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.devcontainer/scripts/installSQLtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.devcontainer/scripts/installSQLtools.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/postCreateCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.devcontainer/scripts/postCreateCommand.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.gitignore -------------------------------------------------------------------------------- /.tours/1-getting-started.tour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/1-getting-started.tour -------------------------------------------------------------------------------- /.tours/2-existing-databases.tour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/2-existing-databases.tour -------------------------------------------------------------------------------- /.tours/3-web-sites.tour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/3-web-sites.tour -------------------------------------------------------------------------------- /.tours/4-database-providers.tour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/4-database-providers.tour -------------------------------------------------------------------------------- /.tours/5-performance-tips.tour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/5-performance-tips.tour -------------------------------------------------------------------------------- /.tours/media/1-entity-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/1-entity-diagram.png -------------------------------------------------------------------------------- /.tours/media/1-products-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/1-products-table.png -------------------------------------------------------------------------------- /.tours/media/1-refresh-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/1-refresh-explorer.png -------------------------------------------------------------------------------- /.tours/media/1-sql-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/1-sql-server.png -------------------------------------------------------------------------------- /.tours/media/1-workspace-with-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/1-workspace-with-files.png -------------------------------------------------------------------------------- /.tours/media/2-integrated-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/2-integrated-terminal.png -------------------------------------------------------------------------------- /.tours/media/2-models-new-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/2-models-new-file.png -------------------------------------------------------------------------------- /.tours/media/3-integrated-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/3-integrated-terminal.png -------------------------------------------------------------------------------- /.tours/media/4-cosmos-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/4-cosmos-db.png -------------------------------------------------------------------------------- /.tours/media/4-ef-core-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/4-ef-core-architecture.png -------------------------------------------------------------------------------- /.tours/media/4-integrated-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/4-integrated-terminal.png -------------------------------------------------------------------------------- /.tours/media/4-postgres-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/4-postgres-output.png -------------------------------------------------------------------------------- /.tours/media/readme-launch-codespace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/readme-launch-codespace.gif -------------------------------------------------------------------------------- /.tours/media/readme-launch-codetour.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.tours/media/readme-launch-codetour.gif -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/SECURITY.md -------------------------------------------------------------------------------- /notes/1-getting-started/ContosoPizzaContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/1-getting-started/ContosoPizzaContext.cs -------------------------------------------------------------------------------- /notes/1-getting-started/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/1-getting-started/Customer.cs -------------------------------------------------------------------------------- /notes/1-getting-started/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/1-getting-started/Order.cs -------------------------------------------------------------------------------- /notes/1-getting-started/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/1-getting-started/OrderDetail.cs -------------------------------------------------------------------------------- /notes/1-getting-started/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/1-getting-started/Product.cs -------------------------------------------------------------------------------- /notes/1-getting-started/Program-snippets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/1-getting-started/Program-snippets.cs -------------------------------------------------------------------------------- /notes/1-getting-started/connection-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/1-getting-started/connection-strings.md -------------------------------------------------------------------------------- /notes/1-getting-started/entity-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/1-getting-started/entity-diagram.md -------------------------------------------------------------------------------- /notes/1-getting-started/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/1-getting-started/script.md -------------------------------------------------------------------------------- /notes/2-existing-databases/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/2-existing-databases/Customer.cs -------------------------------------------------------------------------------- /notes/2-existing-databases/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/2-existing-databases/Program.cs -------------------------------------------------------------------------------- /notes/2-existing-databases/connection-strings-and-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/2-existing-databases/connection-strings-and-notes.md -------------------------------------------------------------------------------- /notes/2-existing-databases/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/2-existing-databases/script.md -------------------------------------------------------------------------------- /notes/3-web-sites/notes-and-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/3-web-sites/notes-and-snippets.md -------------------------------------------------------------------------------- /notes/3-web-sites/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/3-web-sites/script.md -------------------------------------------------------------------------------- /notes/4-database-providers/connection-strings-and-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/4-database-providers/connection-strings-and-notes.md -------------------------------------------------------------------------------- /notes/4-database-providers/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/4-database-providers/script.md -------------------------------------------------------------------------------- /notes/5-performance-tips/connection-strings-and-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/5-performance-tips/connection-strings-and-notes.md -------------------------------------------------------------------------------- /notes/5-performance-tips/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/5-performance-tips/script.md -------------------------------------------------------------------------------- /notes/series-outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/series-outline.md -------------------------------------------------------------------------------- /notes/supplemental/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/notes/supplemental/script.md -------------------------------------------------------------------------------- /parts/1-getting-started/ContosoPizza/ContosoPizza.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/1-getting-started/ContosoPizza/ContosoPizza.csproj -------------------------------------------------------------------------------- /parts/1-getting-started/ContosoPizza/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/1-getting-started/ContosoPizza/Program.cs -------------------------------------------------------------------------------- /parts/2-existing-databases/ContosoPizza/ContosoPizza.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/2-existing-databases/ContosoPizza/ContosoPizza.csproj -------------------------------------------------------------------------------- /parts/2-existing-databases/ContosoPizza/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/2-existing-databases/ContosoPizza/Program.cs -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/ContosoPizza.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/ContosoPizza.csproj -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Data/ContosoPizzaContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Data/ContosoPizzaContext.cs -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Models/Customer.cs -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Models/Order.cs -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Models/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Models/OrderDetail.cs -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Models/Product.cs -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/Error.cshtml -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/Index.cshtml -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Program.cs -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/Properties/launchSettings.json -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/appsettings.Development.json -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/appsettings.json -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/css/site.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/favicon.ico -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/js/site.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/3-web-sites/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /parts/4-database-providers/ContosoPizza/ContosoPizza.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/4-database-providers/ContosoPizza/ContosoPizza.csproj -------------------------------------------------------------------------------- /parts/4-database-providers/ContosoPizza/Data/ContosoPizzaContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/4-database-providers/ContosoPizza/Data/ContosoPizzaContext.cs -------------------------------------------------------------------------------- /parts/4-database-providers/ContosoPizza/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/4-database-providers/ContosoPizza/Models/Customer.cs -------------------------------------------------------------------------------- /parts/4-database-providers/ContosoPizza/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/4-database-providers/ContosoPizza/Models/Order.cs -------------------------------------------------------------------------------- /parts/4-database-providers/ContosoPizza/Models/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/4-database-providers/ContosoPizza/Models/OrderDetail.cs -------------------------------------------------------------------------------- /parts/4-database-providers/ContosoPizza/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/4-database-providers/ContosoPizza/Models/Product.cs -------------------------------------------------------------------------------- /parts/4-database-providers/ContosoPizza/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/4-database-providers/ContosoPizza/Program.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/ContosoPizza.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/ContosoPizza.csproj -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Data/ContosoPizzaContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Data/ContosoPizzaContext.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Models/Customer.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Models/Order.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Models/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Models/OrderDetail.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Models/Product.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Customers/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Customers/Create.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Customers/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Customers/Create.cshtml.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Customers/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Customers/Delete.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Customers/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Customers/Delete.cshtml.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Customers/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Customers/Details.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Customers/Details.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Customers/Details.cshtml.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Customers/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Customers/Edit.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Customers/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Customers/Edit.cshtml.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Customers/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Customers/Index.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Customers/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Customers/Index.cshtml.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Error.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Index.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Products/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Products/Details.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Products/Details.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Products/Details.cshtml.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Program.cs -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/Properties/launchSettings.json -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/appsettings.Development.json -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/appsettings.json -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/css/site.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/favicon.ico -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/js/site.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/ef-core-for-beginners/HEAD/parts/5-performance-tips/ContosoPizza/wwwroot/lib/jquery/dist/jquery.min.map --------------------------------------------------------------------------------