在Startup类之外访问RouteTable

时间:2018-06-15 13:27:31

标签: asp.net-core-2.0

我在Startup.Configure方法中有这段代码:

app.UseMvc(
    routes =>
        {  
            routes.MapRoute(
                name: "default",
                template: "{controller=Home}/{action=Index}/{id?}");
        }
); 

如何在ASP.NET Core 2.1 MVC项目中的Startup类之外添加或删除路由(例如从Controller中)?

0 个答案:

没有答案