I think title is clear. ServiceStack Redis Client serializes(stores) Get Only Properties (also I added ReadOnly attribute).
Is this a bug?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s expected behaviour: if its readable it will be serialized, and if its writable its deserializable. i.e. It will serialize get only properties but wont serialize set only public properties.
ServiceStack serializers does support the [IgnoreDataMember] attribute ignoring properties, see this example.