0
rferrari created
Hi,
I downloaded the last template of AbpZero and upgraded the abp packages but I get the following error
Error CS7036 There is no argument given that corresponds to the required formal parameter 'multiTenancy' of 'ClaimsAbpSession.ClaimsAbpSession(IPrincipalAccessor, IMultiTenancyConfig, ITenantResolver, IAmbientScopeProvider<SessionOverride>)'
Can you advise?
Thanks
2 Answer(s)
-
0
-
0
Perfect!
Changed:
public AspNetZeroAbpSession(IMultiTenancyConfig multiTenancy) : base(multiTenancy) { }
to:
public AspNetZeroAbpSession( IPrincipalAccessor principalAccessor, IMultiTenancyConfig multiTenancy, ITenantResolver tenantResolver, IAmbientScopeProvider<SessionOverride> ambientScopeProvider) : base(principalAccessor, multiTenancy, tenantResolver, ambientScopeProvider) { }
and it works!
Thanks for your prompt reply!