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