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 2017/04/17 15:24:41 UTC

[jira] [Created] (IGNITE-5006) .NET: SQL does not work with F# record types

Pavel Tupitsyn created IGNITE-5006:
--------------------------------------

             Summary: .NET: SQL does not work with F# record types
                 Key: IGNITE-5006
                 URL: https://issues.apache.org/jira/browse/IGNITE-5006
             Project: Ignite
          Issue Type: Bug
          Components: platforms
    Affects Versions: 1.7
            Reporter: Pavel Tupitsyn
            Assignee: Pavel Tupitsyn
             Fix For: 2.0


The following code returns null results:

{code}
type Person = 
    { 
        [<QuerySqlField>]
        id : int; 
        [<QuerySqlField>]
        name : String 
    }

...

cache.QueryFields(new SqlFieldsQuery("from person select id")).GetAll()
{code}

F# record fields have {{@}} symbol in the end. We should clean up or escape these.

{{cache.QueryFields(new SqlFieldsQuery("from person select id")).GetAll()}}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)