通过实现IRouteConstraint接口,实现对某个控制名进行限制.本篇把重点放在自定义约束,其余部分参考: MVC自定义路由01-为什么需要自定义路由 自定义约束前 using System.Web.Mvc; using System.Web.Routing; using MvcApplication2.Extension; namespace MvcApplication2 { public class RouteConfig { public static void Regi…
本篇体验自定义路由以及了解为什么需要自定义路由. 准备 □ View Models using System.Collections.Generic; namespace MvcApplication2.Models { //单位 public class Unit { public int ID { get; set; } public RentalProperty RentalProperty { get; set; } public string Name { get; set; }…