Skip to content

Commit

Permalink
fix(ConsoleUI): pass required property of generate crud cli cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmet-cetinkaya committed Feb 7, 2024
1 parent 979ab8b commit edf5058
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ public override async Task<int> ExecuteAsync(CommandContext context, Settings se
IsSecuredOperationUsed = settings.IsSecuredOperationUsed,
DbContextName = settings.DbContextName!
},
ProjectPath = settings.ProjectPath
ProjectPath = settings.ProjectPath,
DbContextName = settings.DbContextName!
};

IAsyncEnumerable<GeneratedCrudResponse> resultsStream = _mediator.CreateStream(request: generateCrudCommand);
Expand Down

0 comments on commit edf5058

Please sign in to comment.