Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
If you're creating a bug/problem report, please include followings:
It never generates the libs folder and below message is thrown when I run the solution.
AbpException: Could not find the bundle file '/libs/abp/core/abp.css' for the bundle 'Lepton.Global'!
Run command prompt as an Admin run command => npm-windows-upgrade
This fixed my issue
public async Task<IActionResult> OnPostAsync()
{
try
{
ExamAdminMember.ExamId = Id;
await _examAppService.CreateUpdateExamAdminMember(ExamAdminMember);
return NoContent();
}
catch (Exception ex)
{
throw;
}
}
Found the issue. Now worries