Hello!
I have a POCO like this:
[DataContract]
public class BrowseProtocolTemplateResponseLight
{
[DataMember(Name = "ProtocolTemplateId")]
public Guid Oid { get; set; }
[DataMember]
public string Name { get; set; }
[DataMember]
public string Title { get; set; }
[DataMember]
public string Description { get; set; }
[DataMember]
public List<object> ProtocolBusinessObjects { get; set; }
[DataMember]
public ResponseStatus ResponseStatus { get; set; }
}
Before the v.5.5 the ServiceStack.Text.TypeSerializer.DeserializeFromString<BrowseProtocolTemplateResponseLight>(json)
function fill the ProtocolBusinessObjects
property with a List<string>
. Now this property is null.
This json is stored in a table and if I read with OrmLite and map to BrowseProtocolTemplateResponseLight
also got null value (e.g. Db.Single<BrowseProtocolTemplateResponseLight>(query)
).
I try to use the new AutoMapping.RegisterConverter without success.
Thank you,
Tom