0
sky created
Hi, I recently update the abp packages from 1.21 (included in the lastest aspnetzero) to 1.5.
I realised the ClaimsAbpSession constuctor has changed, from
public ClaimsAbpSession(IMultiTenancyConfig multiTenancy)
{
...
}
to
ClaimsAbpSession(
IPrincipalAccessor principalAccessor,
IMultiTenancyConfig multiTenancy,
IAmbientScopeProvider<SessionOverride> sessionOverrideScopeProvider)
:base(multiTenancy, sessionOverrideScopeProvider)
{
...
}
I tried to understand, however with limited documentation, I am unable to. Could you tell me how to patch this breaking change.
Thank you.
1 Answer(s)
-
0
Hi,
Can you change it like the one in this post #2464@a3eb9ab8-2e31-41d8-9ee5-59e2f66b191e ?