Aspect-oriented programming in .NET Core
Step 9. Create the new controller file under the controllers folder. This filename sets the “ActionFilterController” file, which adds the CRUD methods.

Create a new folder under Views. This folder name sets “ActionFilter.” Create View files under the ActionFilter folder, such as Create, Details, Delete, Edit, and Index.

Step 10. Add the action filter in the controller file. You can assign the “IActionResult” method or all of the “IActionResult” methods.

Note: If you want to see the complete source code, please go to my Github – Enterprise_MVC_WebApp. My Github link puts on my profile page.
2 Comments