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)