Update live with current master (#5038)

* Restore MVC/EF to TOC (#5034)

* Fix legacy Web-API server (#5037)
pull/5078/head
Rick Anderson 2017-12-18 20:02:41 -10:00 committed by GitHub
parent f5a7f01986
commit 193467bbcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 7 deletions

View File

@ -134,13 +134,6 @@
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Microsoft.Net.Compilers.2.1.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Net.Compilers.2.1.0\build\Microsoft.Net.Compilers.props'))" />
<Error Condition="!Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.5\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.5\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">

View File

@ -37,6 +37,18 @@
### [Updating related data](xref:data/ef-rp/update-related-data)
### [Handling concurrency conflicts](xref:data/ef-rp/concurrency)
## [Data access - MVC 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)