You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is my template, but i can't create different controllers.
namespace CodeGenerated
{
/// <summary>
/// This is the controller class for all the ###CONTROLLER_NAME### commands in the system
/// </summary>
[Authorize]
public class ###CONTROLLER_NAME###CommandController : ApiControllerBase
{
//The command action methods will be inserted here by the source generator
###Commands###
}
}
MyProject has ControllerA, ControllerB, ControllerC, ... ControllerX every controller has many actions, how I can know actions of a controller?
If I follow this project, I always only have 2 controllers, commandController and queryController
But How to create different controllers?
2.How to authentition and UnAuthentication a GeneratedController?
The text was updated successfully, but these errors were encountered:
Tks your project,
This is my template, but i can't create different controllers.
MyProject has ControllerA, ControllerB, ControllerC, ... ControllerX every controller has many actions, how I can know actions of a controller?
If I follow this project, I always only have 2 controllers, commandController and queryController
But How to create different controllers?
2.How to authentition and UnAuthentication a GeneratedController?
The text was updated successfully, but these errors were encountered: