I store Dictionary<string, string> as jsonb column type and I need encrypt every values in dictionary, not keys.
Model example:
public class SomeEntity
{
[Encrypted] // <-- not worked now
[Column(TypeName="jsonb")]
public Dictionary<string, string> Username { get; set; }
}
I store
Dictionary<string, string>asjsonbcolumn type and I need encrypt every values in dictionary, not keys.Model example: