Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "aaron"

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
Showing 581 to 590 of 1543 entries