Re: Ignite LINQ Help

2016-09-22 Thread Murthy Kakarlamudi
That worked. Thanks Pavel. On Thu, Sep 22, 2016 at 2:57 AM, Pavel Tupitsyn wrote: > Hi, > > Your class is serialized with .NET BinaryFormatter, that's why SQL and > LINQ does not work [1]. > > To fix this, remove [Serializable] attribute and register the class in > BinaryConfiguration: > > > v

Re: Ignite LINQ Help

2016-09-21 Thread Pavel Tupitsyn
Hi, Your class is serialized with .NET BinaryFormatter, that's why SQL and LINQ does not work [1]. To fix this, remove [Serializable] attribute and register the class in BinaryConfiguration: var cfg = new IgniteConfiguration { BinaryConfiguration = new BinaryConfiguration(typeof(MyModel) };