ASP.Net MVC - post from one controller to another (action to action)

前端 未结 5 1813
孤街浪徒
孤街浪徒 2021-02-08 00:47

Is is possible to do a post from an Action \"Save\" in a controller \"Product\" to an Action \"SaveAll\" in a controller \"Category\"??

And also passing

5条回答
  •  南方客
    南方客 (楼主)
    2021-02-08 01:35

    I would either just update your categories in your repository from your Product controller Save method directly, or refactor the Save Categories functionality in its own method, and call that from both controller methods.

提交回复
热议问题