我需要将一个NodaTime LocalDateTime存储在一个Akavache缓存中。
我创建了一个简单的应用程序,该应用程序使用以下类并将其存储在Akavache缓存中/从中提取:
public class TestModel
{
public string Name { get; set; }
public LocalDateTime StartDateTimeLocal {get; set;}
public DateTime StartDateTimeUtc {get;set;}
}
将其存储在缓存中并从缓存中检索时,尚未填充 StartDateTimeLocal 属性。
Akavache似乎不知道如何对LocalDateTime进行序列化/反序列化。
是否可以向Akavache注册类型或为未知类型提供自定义序列化?
控制台应用程序进行演示:
using Akavache;
using NodaTime;
using System;
using System.Reactive.Linq;
namespace AkavacheNodaTimeCore
{
class Program
{
static TestModel BeforeModel;
static TestModel AfterModel;
static void Main(string[] args)
{
// Note that we're using Akavache 6.0.27, to match the version we're using in our live system.
BlobCache.ApplicationName = "AkavacheNodaTimeCore";
BlobCache.EnsureInitialized();
BeforeModel = new TestModel()
{
StartLocalDateTime = LocalDateTime.FromDateTime(DateTime.Now),
StartDateTime = DateTime.UtcNow,
};
Console.WriteLine($"Before:LocalDateTime='{BeforeModel.StartLocalDateTime}' DateTime='{BeforeModel.StartDateTime}'");
CycleTheModels();
Console.WriteLine($"After: LocalDateTime='{AfterModel.StartLocalDateTime}' DateTime='{AfterModel.StartDateTime}'");
Console.WriteLine("Note that Akavache retrieves DateTimes as DateTimeKind.Local, so DateTime before and after above will differ.");
Console.WriteLine("Press any key to continue.");
var y = Console.ReadKey();
}
/// <summary>
/// Puts a model into Akavache and retrieves a new one so we can compare.
/// </summary>
static async void CycleTheModels()
{
await BlobCache.InMemory.Invalidate("model");
await BlobCache.InMemory.InsertObject("model", BeforeModel);
AfterModel = await BlobCache.InMemory.GetObject<TestModel>("model");
}
}
}
TestModel类:
using NodaTime;
using System;
namespace AkavacheNodaTimeCore
{
public class TestModel
{
public string Name { get; set; }
public LocalDateTime StartLocalDateTime { get; set; }
public DateTime StartDateTime {get;set;}
}
}
我已在演示问题的控制台应用程序中添加了Git repo。
答案 0 :(得分:2)
您需要配置Akavache与Json.NET一起使用的JsonSerializerSettings
。您需要对NodaTime.Serialization.JsonNet
的引用,这时您可以创建一个序列化程序设置实例,为Noda Time配置它,然后将其添加为Splat中的依赖项(Akavache使用该依赖项)。我以前没有使用过Splat,所以这可能不是正确的做法,但是它可以与您的示例一起使用:
using Newtonsoft.Json;
using NodaTime.Serialization.JsonNet;
using Splat;
...
// This should be before any of your other code.
var settings = new JsonSerializerSettings();
settings.ConfigureForNodaTime(DateTimeZoneProviders.Tzdb);
Locator.CurrentMutable.RegisterConstant(settings, typeof(JsonSerializerSettings));
可能需要在Akavache回购中发布问题,以请求更多有关序列化设置自定义的文档-上面的方法有效,但是是猜测和一些源代码调查。