[
https://issues.apache.org/jira/browse/IGNITE-6627?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16206119#comment-16206119
]
ASF GitHub Bot commented on IGNITE-6627:
----------------------------------------
GitHub user apopovgg opened a pull request:
https://github.com/apache/ignite/pull/2864
IGNITE-6627 .NET: cache deserialization fails with complex value type…
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/gridgain/apache-ignite ignite-6627
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/ignite/pull/2864.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #2864
----
commit 80bebfc0752fb75feb8eaea1771fb03ce01429ac
Author: apopov <[email protected]>
Date: 2017-10-16T16:10:16Z
IGNITE-6627 .NET: cache deserialization fails with complex value type & enum
----
> .NET: cache deserialization fails with complex value type & enum
> ----------------------------------------------------------------
>
> Key: IGNITE-6627
> URL: https://issues.apache.org/jira/browse/IGNITE-6627
> Project: Ignite
> Issue Type: Bug
> Components: platforms
> Affects Versions: 2.2
> Reporter: Alexey Popov
> Assignee: Alexey Popov
> Labels: .NET
> Fix For: 2.4
>
>
> There is an deserialization issue with complex structure.
> Please see the sample code below:
> {noformat}
> public enum SampleEnum : byte
> {
> One = 0,
> Two = 1,
> Three = 2
> }
> {noformat}
> {noformat}
> var cache = ignite.GetOrCreateCache<string,
> Dictionary<SampleEnum, Dictionary<int, int>>>("mySampleCache");
> cache.Put("DictData", Dict);
> var result = cache.Get("DictData");
> {noformat}
> var result = cache.Get("DictData"); fails with exception:
> {"The constructor to deserialize an object of type
> 'System.Collections.Generic.ObjectEqualityComparer`1[SampleProject.SampleEnum]'
> was not found."}
> If we change
> Dictionary<SampleEnum, Dictionary<int, int>>
> to
> Dictionary<int, Dictionary<int, int>>
> then everything works fine
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)