diff --git a/aspnetcore/mvc/models/model-binding.md b/aspnetcore/mvc/models/model-binding.md index c2129152fb..affea2677b 100644 --- a/aspnetcore/mvc/models/model-binding.md +++ b/aspnetcore/mvc/models/model-binding.md @@ -62,13 +62,7 @@ Additionally, there are some special data types that MVC must consider when perf These types can be bound to action parameters or to properties on a class type. - - -Once model binding is complete, [validation](../models/validation.md) occurs. Default model binding works great for the vast majority of development scenarios. It is also extensible so if you have unique needs you can customize the built-in behavior. +Once model binding is complete, [Validation](xref:mvc/models/validation) occurs. Default model binding works great for the vast majority of development scenarios. It is also extensible so if you have unique needs you can customize the built-in behavior. ## Customize model binding behavior with attributes @@ -111,3 +105,7 @@ public void ConfigureServices(IServiceCollection services) ```` Code in the *Startup.cs* file contains a `ConfigureServices` method with a `services` argument you can use to build up services for your ASP.NET app. In the sample, we are adding an XML formatter as a service that MVC will provide for this app. The `options` argument passed into the `AddMvc` method allows you to add and manage filters, formatters, and other system options from MVC upon app startup. Then apply the `Consumes` attribute to controller classes or action methods to work with the format you want. + +## Additional Resources + +* [Validation xref](xref:mvc/models/validation) \ No newline at end of file diff --git a/aspnetcore/mvc/models/validation.md b/aspnetcore/mvc/models/validation.md index 9ddd1d3ffd..079e321511 100644 --- a/aspnetcore/mvc/models/validation.md +++ b/aspnetcore/mvc/models/validation.md @@ -6,8 +6,8 @@ manager: wpickett ms.date: 10/14/2016 ms.topic: article ms.assetid: 3a8676dd-7ed8-4a05-bca2-44e288ab99ee -ms.prod: aspnet-core -uid: mvc/models/validation +ms.prod: aspnet-core  +uid: mvc/models/validation --- # Model Validation