2017-03-03 08:50:36 +08:00
# [Introduction](index.md)
2017-01-15 05:59:26 +08:00
2017-08-15 00:59:40 +08:00
# [Getting Started](getting-started.md)
2017-08-08 03:08:21 +08:00
## [Create a Web app](xref:mvc/razor-pages/index)
2017-06-27 02:45:35 +08:00
## [Create a Web API](xref:tutorials/first-web-api)
2017-03-10 08:40:17 +08:00
# [Tutorials](tutorials/index.md)
2016-12-10 09:36:55 +08:00
# [Fundamentals](fundamentals/index.md)
## [Application Startup](fundamentals/startup.md)
## [Middleware](fundamentals/middleware.md)
## [Working with Static Files](fundamentals/static-files.md)
## [Routing](fundamentals/routing.md)
2017-01-12 02:12:08 +08:00
## [URL Rewriting Middleware](fundamentals/url-rewriting.md)
2016-12-10 09:36:55 +08:00
## [Error Handling](fundamentals/error-handling.md)
2017-04-01 02:02:08 +08:00
## [WebSockets](fundamentals/websockets.md)
2016-12-10 09:36:55 +08:00
## [Globalization and localization](fundamentals/localization.md)
## [Configuration](fundamentals/configuration.md)
## [Logging](fundamentals/logging.md)
## [File Providers](fundamentals/file-providers.md)
## [Dependency Injection](fundamentals/dependency-injection.md)
## [Working with Multiple Environments](fundamentals/environments.md)
## [Hosting](fundamentals/hosting.md)
2017-01-14 02:07:39 +08:00
## [Session and application state](fundamentals/app-state.md)
2016-12-10 09:36:55 +08:00
## [Servers](fundamentals/servers/index.md)
### [Kestrel](fundamentals/servers/kestrel.md)
### [ASP.NET Core Module](fundamentals/servers/aspnet-core-module.md)
### [WebListener](fundamentals/servers/weblistener.md)
2017-08-12 02:47:48 +08:00
### [HttpSys](fundamentals/servers/httpsys.md)
2016-12-10 09:36:55 +08:00
## [Request Features](fundamentals/request-features.md)
## [Open Web Interface for .NET (OWIN)](fundamentals/owin.md)
2017-02-04 05:40:22 +08:00
## [Choose between ASP.NET Core and ASP.NET](choose-aspnet-framework.md)
## [Choose between .NET Core and .NET Framework runtime](https://docs.microsoft.com/dotnet/articles/standard/choosing-core-framework-server)
2017-07-19 05:44:34 +08:00
## [Microsoft.AspNetCore.All metapackage](xref:fundamentals/metapackage)
2017-01-15 05:59:26 +08:00
# [MVC](mvc/overview.md)
2017-07-19 07:18:26 +08:00
## [Razor Pages](xref:mvc/razor-pages/index)
2017-06-30 00:42:25 +08:00
### [Razor syntax](mvc/views/razor.md)
## [Model Binding](mvc/models/model-binding.md)
2017-01-15 05:59:26 +08:00
### [Model validation](mvc/models/validation.md)
2017-06-30 00:42:25 +08:00
## [Views](mvc/views/overview.md)
2017-01-15 05:59:26 +08:00
### [Razor syntax](mvc/views/razor.md)
2017-03-21 09:29:28 +08:00
### [View compilation](mvc/views/view-compilation.md)
2017-01-15 05:59:26 +08:00
### [Layout](mvc/views/layout.md)
### [Tag helpers](mvc/views/tag-helpers/intro.md)
#### [Authoring tag helpers](mvc/views/tag-helpers/authoring.md)
2017-02-10 06:28:47 +08:00
#### [Using tag helpers in forms](mvc/views/working-with-forms.md)
2017-07-09 00:50:40 +08:00
#### [Built-in tag helpers](mvc/views/tag-helpers/built-in/index.md)
##### [Anchor tag helper](mvc/views/tag-helpers/built-in/AnchorTagHelper.md)
##### [Cache tag helper](mvc/views/tag-helpers/built-in/CacheTagHelper.md)
##### [Distributed Cache tag helper](mvc/views/tag-helpers/built-in/DistributedCacheTagHelper.md)
##### [Environment tag helper](mvc/views/tag-helpers/built-in/EnvironmentTagHelper.md)
##### [Image tag helper](mvc/views/tag-helpers/built-in/ImageTagHelper.md)
2017-01-15 05:59:26 +08:00
### [Partial views](mvc/views/partial.md)
### [Dependency injection into views](mvc/views/dependency-injection.md)
### [View components](mvc/views/view-components.md)
2017-06-30 00:42:25 +08:00
## [Controllers](mvc/controllers/actions.md)
### [Routing to controller actions](mvc/controllers/routing.md)
### [File uploads](mvc/models/file-uploads.md)
### [Dependency injection into controllers](mvc/controllers/dependency-injection.md)
### [Testing controllers](mvc/controllers/testing.md)
2017-01-15 05:59:26 +08:00
## [Advanced](mvc/advanced/index.md)
### [Working with the Application Model](mvc/controllers/application-model.md)
2017-06-30 00:42:25 +08:00
### [Filters](mvc/controllers/filters.md)
### [Areas](mvc/controllers/areas.md)
2017-04-08 04:11:19 +08:00
### [Application parts](mvc/advanced/app-parts.md)
2017-05-11 08:03:18 +08:00
### [Custom Model Binding](mvc/advanced/custom-model-binding.md)
2017-02-14 03:14:43 +08:00
### [Custom formatters](mvc/advanced/custom-formatters.md)
2017-06-30 00:42:25 +08:00
### [Formatting response data](mvc/models/formatting.md)
## [Tutorials](tutorials/index.md)
2017-08-09 01:02:15 +08:00
### [Create a Razor Pages web app](xref:tutorials/razor-pages/index)
#### [Getting started with Razor Pages](xref:tutorials/razor-pages/razor-pages-start)
#### [Adding a model](xref:tutorials/razor-pages/model)
#### [Scaffolded Razor Pages](xref:tutorials/razor-pages/page)
#### [SQL Server LocalDB](xref:tutorials/razor-pages/sql)
2017-08-11 00:55:57 +08:00
#### [Updating the pages](xref:tutorials/razor-pages/da1)
2017-08-13 03:31:37 +08:00
#### [Adding search](xref:tutorials/razor-pages/search)
#### [Adding a new field](xref:tutorials/razor-pages/new-field)
2017-08-14 03:47:26 +08:00
#### [Adding validation](xref:tutorials/razor-pages/validation)
2017-08-09 01:02:15 +08:00
2017-06-30 00:42:25 +08:00
### [Create a web app on Windows](tutorials/first-mvc-app/index.md)
#### [Getting started](tutorials/first-mvc-app/start-mvc.md)
#### [Adding a controller](tutorials/first-mvc-app/adding-controller.md)
#### [Adding a view](tutorials/first-mvc-app/adding-view.md)
#### [Adding a model](tutorials/first-mvc-app/adding-model.md)
#### [Working with SQL Server LocalDB](tutorials/first-mvc-app/working-with-sql.md)
#### [Controller methods and views](tutorials/first-mvc-app/controller-methods-views.md)
2017-08-13 03:31:37 +08:00
#### [Adding search](tutorials/first-mvc-app/search.md)
2017-06-30 00:42:25 +08:00
#### [Adding a New Field](tutorials/first-mvc-app/new-field.md)
#### [Adding Validation](tutorials/first-mvc-app/validation.md)
#### [Examining the Details and Delete methods](tutorials/first-mvc-app/details.md)
### [Create a web app on a Mac](tutorials/first-mvc-app/index.md)
#### [Getting started](tutorials/first-mvc-app-mac/start-mvc.md)
#### [Adding a controller](tutorials/first-mvc-app-mac/adding-controller.md)
#### [Adding a view](tutorials/first-mvc-app-mac/adding-view.md)
#### [Adding a model](tutorials/first-mvc-app-mac/adding-model.md)
2017-07-06 22:50:30 +08:00
#### [Working with SQLite](tutorials/first-mvc-app-mac/working-with-sql.md)
2017-06-30 00:42:25 +08:00
#### [Controller methods and views](tutorials/first-mvc-app-mac/controller-methods-views.md)
2017-08-13 03:31:37 +08:00
#### [Adding search](tutorials/first-mvc-app-mac/search.md)
2017-06-30 00:42:25 +08:00
#### [Adding a New Field](tutorials/first-mvc-app-mac/new-field.md)
#### [Adding Validation](tutorials/first-mvc-app-mac/validation.md)
#### [Examining the Details and Delete methods](tutorials/first-mvc-app/details.md)
### [Create a web app with VS Code](tutorials/first-mvc-app-xplat/index.md)
#### [Getting started](tutorials/first-mvc-app-xplat/start-mvc.md)
#### [Adding a controller](tutorials/first-mvc-app-xplat/adding-controller.md)
#### [Adding a view](tutorials/first-mvc-app-xplat/adding-view.md)
#### [Adding a model](tutorials/first-mvc-app-xplat/adding-model.md)
2017-07-06 22:50:30 +08:00
#### [Working with SQLite](tutorials/first-mvc-app-xplat/working-with-sql.md)
2017-06-30 00:42:25 +08:00
#### [Controller methods and views](tutorials/first-mvc-app-xplat/controller-methods-views.md)
2017-08-13 03:31:37 +08:00
#### [Adding search](tutorials/first-mvc-app-xplat/search.md)
2017-06-30 00:42:25 +08:00
#### [Adding a New Field](tutorials/first-mvc-app-xplat/new-field.md)
#### [Adding Validation](tutorials/first-mvc-app-xplat/validation.md)
#### [Examining the Details and Delete methods](tutorials/first-mvc-app/details.md)
### [Data access - working with EF Core](data/ef-mvc/index.md)
#### [Getting started](data/ef-mvc/intro.md)
#### [Create, Read, Update, and Delete operations](data/ef-mvc/crud.md)
#### [Sorting, filtering, paging, and grouping](data/ef-mvc/sort-filter-page.md)
#### [Migrations](data/ef-mvc/migrations.md)
#### [Creating a complex data model](data/ef-mvc/complex-data-model.md)
#### [Reading related data](data/ef-mvc/read-related-data.md)
#### [Updating related data](data/ef-mvc/update-related-data.md)
#### [Handling concurrency conflicts](data/ef-mvc/concurrency.md)
#### [Inheritance](data/ef-mvc/inheritance.md)
#### [Advanced topics](data/ef-mvc/advanced.md)
### [Creating backend services for mobile apps](mobile/native-mobile-backend.md)
### [Building Web APIs](mvc/web-api/index.md)
### [Create a Web API](xref:tutorials/first-web-api-mac)
#### [ASP.NET Web API Help Pages using Swagger](tutorials/web-api-help-pages-using-swagger.md)
#### [Creating backend services for native mobile applications](mobile/native-mobile-backend.md)
2017-01-15 05:59:26 +08:00
2017-05-23 09:35:11 +08:00
# [Testing and debugging](testing/index.md)
2017-07-11 02:20:50 +08:00
## [Unit testing](https://docs.microsoft.com/dotnet/articles/core/testing/unit-testing-with-dotnet-test)
2017-01-15 05:59:26 +08:00
## [Integration testing](testing/integration-testing.md)
## [Testing controllers](mvc/controllers/testing.md)
2017-05-23 09:35:11 +08:00
## [Remote debugging](https://docs.microsoft.com/visualstudio/debugger/remote-debugging-azure)
2017-01-15 05:59:26 +08:00
# [Working with Data](data/index.md)
## [Getting started with ASP.NET Core and Entity Framework Core using Visual Studio](data/ef-mvc/index.md)
2017-02-02 07:45:15 +08:00
## [ASP.NET Core with EF Core - new database](https://docs.microsoft.com/ef/core/get-started/aspnetcore/new-db)
## [ASP.NET Core with EF Core - existing database](https://docs.microsoft.com/ef/core/get-started/aspnetcore/existing-db)
2017-01-15 05:59:26 +08:00
## [Getting Started with ASP.NET Core and Entity Framework 6](data/entity-framework-6.md)
## [Azure Storage](data/azure-storage/index.md)
### [Adding Azure Storage by using Visual Studio Connected Services](https://azure.microsoft.com/documentation/articles/vs-azure-tools-connected-services-storage)
### [Get started with Blob storage and Visual Studio Connected Services](https://azure.microsoft.com/documentation/articles/vs-storage-aspnet5-getting-started-blobs)
### [Get Started with Queue Storage and Visual Studio Connected Services](https://azure.microsoft.com/documentation/articles/vs-storage-aspnet5-getting-started-queues)
### [Get Started with Table Storage and Visual Studio Connected Services](https://azure.microsoft.com/documentation/articles/vs-storage-aspnet5-getting-started-tables)
2016-10-29 01:35:15 +08:00
# [Client-Side Development](client-side/toc.md)
2017-01-15 05:59:26 +08:00
2016-10-29 01:35:15 +08:00
# [Mobile](mobile/toc.md)
2017-01-15 05:59:26 +08:00
2017-04-08 04:11:19 +08:00
# [Hosting and deployment](xref:publishing/index)
## [Host on Windows with IIS](xref:publishing/iis)
### [ASP.NET Core Module Configuration Reference](xref:hosting/aspnet-core-module)
### [IIS Modules with ASP.NET Core](xref:hosting/iis-modules)
## [Host in a Windows service](xref:hosting/windows-service)
## [Host on Linux with Nginx](xref:publishing/linuxproduction)
## [Host on Linux with Apache](xref:publishing/apache-proxy)
## [Host in Docker](xref:publishing/docker)
### [Building Docker Images](https://docs.microsoft.com/dotnet/articles/core/docker/building-net-docker-images)
### [Visual Studio Tools for Docker](https://docs.microsoft.com/dotnet/articles/core/docker/visual-studio-tools-for-docker)
### [Publish to a Docker Image](https://azure.microsoft.com/documentation/articles/vs-azure-tools-docker-hosting-web-apps-in-docker)
## [Publish to Azure with Visual Studio](xref:tutorials/publish-to-azure-webapp-using-vs)
## [Continuous deployment to Azure with Visual Studio and Git](xref:publishing/azure-continuous-deployment)
2017-07-11 05:12:03 +08:00
## [Continuous deployment to Azure with VSTS](https://www.visualstudio.com/en-us/docs/build/aspnet/core/quick-to-azure)
2017-04-08 04:11:19 +08:00
## [Publish profiles in Visual Studio](xref:publishing/web-publishing-vs)
## [Directory structure](xref:hosting/directory-structure)
2017-01-15 05:59:26 +08:00
2016-10-29 01:35:15 +08:00
# [Security](security/toc.md)
2017-01-15 05:59:26 +08:00
2016-10-29 01:35:15 +08:00
# [Performance](performance/toc.md)
2017-01-15 05:59:26 +08:00
2017-08-11 10:09:38 +08:00
# [Migration](xref:migration/index)
## [ASP.NET to ASP.NET Core 1.x](xref:migration/mvc)
### [Configuration](xref:migration/configuration)
### [Authentication and Identity](xref:migration/identity)
### [Web API](xref:migration/webapi)
### [HTTP Modules to Middleware](xref:migration/http-modules)
## [ASP.NET Core 1.x to 2.0](xref:migration/1x-to-2x/index)
### [Authentication and Identity](xref:migration/1x-to-2x/identity-2x)
2017-01-15 05:59:26 +08:00
2016-11-04 06:32:27 +08:00
# [API Reference](/aspnet/core/api/)
2017-01-15 05:59:26 +08:00
2017-08-15 00:58:46 +08:00
# [2.0 release notes](aspnetcore-2.0.md)
2017-07-12 23:10:23 +08:00
## [1.1 Release notes](aspnetcore-1.1.md)
2017-04-14 05:46:10 +08:00
## [Earlier release notes](https://github.com/aspnet/home/releases)
2017-05-17 21:21:37 +08:00
## [VS 2015/project.json docs](https://docs.microsoft.com/dotnet/articles/project-json)
2017-01-15 05:59:26 +08:00
2016-11-05 01:10:32 +08:00
# [Contribute](https://github.com/aspnet/Docs/blob/master/CONTRIBUTING.md)