You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Pavel Tupitsyn (JIRA)" <ji...@apache.org> on 2016/04/11 11:04:25 UTC

[jira] [Created] (IGNITE-2970) .NET: CompiledQuery fails with embedded const parameters

Pavel Tupitsyn created IGNITE-2970:
--------------------------------------

             Summary: .NET: CompiledQuery fails with embedded const parameters
                 Key: IGNITE-2970
                 URL: https://issues.apache.org/jira/browse/IGNITE-2970
             Project: Ignite
          Issue Type: Bug
          Components: platforms
    Affects Versions: 1.6
            Reporter: Pavel Tupitsyn
            Assignee: Pavel Tupitsyn
            Priority: Critical
             Fix For: 1.6


This works:
{code}
var qry = CompiledQuery.Compile((int x) => cache.Where(x => x.Key < x));
qry(5).GetAll();
{code}

And this fails:
{code}
var qry = CompiledQuery.Compile(() => cache.Where(x => x.Key < 5));
qry().GetAll();
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)