Can you check if you installed Abp.AspNetZeroCore package? See: MyCompanyName.AbpZeroTemplate.Core.csproj#L31
That seems limited to 2 files. Can you check if your files have the correct using directives?
How to migrate existing solution: https://github.com/aspnetzero/aspnet-zero/issues/96#issuecomment-268093697
That issue links to the commit that changes root.module.ts:
ismcagdas closed this in 1fba893 x hours ago
Then you need to add null-checks before using Contains.
Could the FirstName, LastName, EmployeeStatus or EmployeeEmail be null?
Can you show the implementation of EmployeeDirectoryService.<OpenEmployeeDirectory>?
That sounds easily handled by Overriding Current Session Values:
[AbpAllowAnonymous]
public void ApproveRequest()
{
// 1. Validate URL / hash
using (_session.Use(42, null)) // 2. Always override current session values
{
var tenantId = _session.TenantId; // 42
var userId = _session.UserId; // null
// 3. Do work
// 4. Invalidate URL
} // 5. Overriding is automatically disposed
// 6. I'm done.
}
when I execute _authenticationManager.SignOutAllAndSignIn(), AbpSession does not change. I assume the Claim does not populate in Identity until you call back into the server, which means AbpSession does not ever populate.
Correct, that populates the cookie for subsequent requests.
How is FinanceAndInsuranceJob.<RunExecuteAsync> called?
You can invite yourself here: <a class="postlink" href="https://aspnetzero.com/LicenseManagement">https://aspnetzero.com/LicenseManagement</a>