-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Description
public async Task<IEnumerable<MediumMessage>> GetReceivedMessagesOfNeedRetry()
{
...................
while (reader.Read())
{
result.Add(new MediumMessage
{
DbId = reader.GetInt64(0).ToString(),
Origin = StringSerializer.DeSerialize(reader.GetString(4)),//**反序列化之后Value为JObject,执行时引发错误**
Retries = reader.GetInt32(5),
Added = reader.GetDateTime(6)
});
}
return result;
}
Reactions are currently unavailable