Did you insert any?
How do you call GetBenefitOption
?
var flowUnit = await flowUnitRepository.GetAll()
.Include(fu => fu.FlowForm)
.ThenInclude(ff => ff.FlowUnitList)
.FirstAsync(fu => fu.Id == input.Id.Value);
create-bundles
is for v5.5+.
await GetBenefitOption
!= await _benefitOptionRepository.GetAsync
Which folder are you in? Which version of ASP.NET Zero?
https://aspnetboilerplate.com/Pages/Documents/Localization#extending-localization-sources
Did you await GetBenefitOption
properly up the call chain?
app.Use(async (context, next) =>
{
IocManager.Instance.Using<TenantManager>(async tenantManager =>
{
if (!await _tenantManager.ValidateIPAddress())
{
throw new AbpAuthorizationException();
}
});
await next.Invoke();
});
Show the definitions of:
DependentEnrolmentRuleOutputDto
EmploymentRuleOutputDto
TrappingRuleOutputDto