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