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) };

Ignite LINQ Help

2016-09-21 Thread Murthy Kakarlamudi
Hi all, I created a sample example based on the LINQExample provided in Ignite Examples. However I am not getting expected results. Any help is much appreciated. In my for loop at the end I am expecting the last 10 entries. But nothing is getting displayed. Any help is much appreciated. usin