What different Action method `using` and `action` ?
I want overwrite logic CRUD Action. What method can i use to overwrite it using
CreatePostAction
, UpdatePostAction
, DeletePostAction
?
and
1 Reply
Are you trying to write something to do a little more than the standard edit \ create ?
If so, you're already there with
->using
Just write a handler and call it from that method.