Re: WriteAll() method on insert statement execute from sqlline

2020-01-13 Thread Pavel Tupitsyn
When you insert data from C# code, Ignite registers Person class automatically and knows how to deserialize it later. But when you insert data from Sqline, Ignite.NET does not know about Person class yet, so deserialization fails. You can fix this by setting IgniteConfiguration.BinaryConfiguratio

WriteAll() method on insert statement execute from sqlline

2020-01-13 Thread siva
Hi, I am using .net core Application for Ignite client and server,Ignite V2.7.6. Table and indexes created through QueryEntity from Model class. So same table i am using with 3rd party thin client to put data into cache. e.g: public interface ICustomCacheStore { } public class Pe