shishkovilja commented on code in PR #11685: URL: https://github.com/apache/ignite/pull/11685#discussion_r1860971731
########## modules/platforms/dotnet/Apache.Ignite.Core/Cache/Configuration/PlatformCacheConfiguration.cs: ########## @@ -89,6 +103,16 @@ internal void Write(IBinaryRawWriter writer) writer.WriteString(KeyTypeName); writer.WriteString(ValueTypeName); writer.WriteBoolean(KeepBinary); + + if (NodeFilter != null) + { + writer.WriteBoolean(true); + + if (NodeFilter is JavaNodeFilter) + writer.WriteObject<object>(null); + else + writer.WriteObject(NodeFilter); Review Comment: @ptupitsyn , good point! I will test it a little bit later. Currently PR is in WIP status. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org