We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IpAddresses
Also add the length of IdentitySessionConsts.MaxIpAddressesLength.
IdentitySessionConsts.MaxIpAddressesLength
The text was updated successfully, but these errors were encountered:
How to record the region where the login ip address is located? for example: 180.168.255.18 from Shanghai,
public class IdentitySession : BasicAggregateRoot<Guid>, IMultiTenant { public virtual string Region { get; protected set; } // ... }
or an IdentitySession entity inherited from IHasExtraProperties
public class IdentitySession : BasicAggregateRoot<Guid>, IHasExtraProperties, IMultiTenant { public ExtraPropertyDictionary ExtraProperties { get; protected set; } // ... }
This is optional. Users can implement IP address resolution by themselves, such as IP2Region
Sorry, something went wrong.
How to record the region where the login ip address is located? for example: 180.168.255.18 from Shanghai, public class IdentitySession : BasicAggregateRoot<Guid>, IMultiTenant { public virtual string Region { get; protected set; } // ... } or an IdentitySession entity inherited from IHasExtraProperties public class IdentitySession : BasicAggregateRoot<Guid>, IHasExtraProperties, IMultiTenant { public ExtraPropertyDictionary ExtraProperties { get; protected set; } // ... } This is optional. Users can implement IP address resolution by themselves, such as IP2Region
#20771
Truncate IpAddresses of IdentitySession.
IdentitySession
4c14a4a
Resolve #20794
maliming
Successfully merging a pull request may close this issue.
Also add the length of
IdentitySessionConsts.MaxIpAddressesLength
.The text was updated successfully, but these errors were encountered: