0

我需要将 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");
        }
    }
}

测试模型类:

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 存储库。

4

1 回答 1

1

您需要配置JsonSerializerSettingsAkavache 与 Json.NET 一起使用的。您需要对 的引用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 存储库中提交问题以请求更多文档以自定义序列化设置 - 上述工作,但只是猜测和一点源代码调查。

于 2019-06-13T09:24:55.677 回答