Hi,
Before 8.3.0, I was using this to retrieve at server side an encrypted password column.
EntitySchemaQuery query = new EntitySchemaQuery(userConnection.EntitySchemaManager.GetInstanceByName(sSchemaName)); query.HideSecurityValue = false; var entity = query.GetEntity(userConnection, guid); var password = entity.GetTypedColumnValue<string>("PF1Password");
Now, the same code return *****.
Is there any new way to retrieve the encrypted value at server side for 8.3.0 ?
Thanks,
Like
1 comments
21:48 Oct 03, 2025
This doesn't work either:
esq.HideSecurityValueSetting = new EntitySchemaQueryHideSecurityValueSetting(EntitySchemaQueryHideSecurityValueOption.None);
Show all comments