3

我在这个问题的答案中添加了代码:Unknown discriminator value 'MyEvent',但它没有帮助。

反序列化 EventStore.EventMessage 类的 Body 属性时出错:未知鉴别器值:“插入事件名称”。仅当您在程序重新启动后尝试重新水化已保存的对象时才会发生错误。

运行最新的 MyGet 构建

示例存储库:https ://github.com/tonyeung/EventStore-MongoDB

要复制问题:

运行程序
按 c 创建新记录
按 q 退出
再次运行程序
但按 r 重新水化
错误触发器

如果您运行程序,按 c,按 enter 继续,按 r 重新水化而不退出,对象重新水化没有问题。笏?

        using (var eventStore = WireupEventStore())
        {
            var snapshot = eventStore.Advanced.GetSnapshot(ID, int.MaxValue);
            if (snapshot == null)
            {
                // ERRORS HERE
                using (var stream = eventStore.OpenStream(ID, 0, int.MaxValue))
                {
                    var events = from s in stream.CommittedEvents
                                 select s.Body as IEvent;

                    obj.LoadsFromHistory(events);
                }
            }
        }

github问题:https ://github.com/NEventStore/NEventStore/issues/203

4

1 回答 1

3

我想通了,因为我使用界面作为我的事件的标记,所以我不得不从 SO 问题中更改查询

        var types = Assembly.GetAssembly(typeof(SimpleCQRS.Event))
                .GetTypes()
                .Where(type => type.IsSubclassOf(typeof(SimpleCQRS.Event)));

        var type = typeof(IEvent);
        var types = Assembly.GetAssembly(typeof(IEvent))
                .GetTypes()
                .Where(t => type.IsAssignableFrom(t))
                .Where(t => t.IsClass);
于 2013-07-02T16:37:42.297 回答