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/07/18 08:31:20 UTC

[jira] [Closed] (IGNITE-3485) .Net: SqlFieldsQuery doesn't work if App.config is used for statup and type configuration

     [ https://issues.apache.org/jira/browse/IGNITE-3485?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pavel Tupitsyn closed IGNITE-3485.
----------------------------------

> .Net: SqlFieldsQuery doesn't work if App.config is used for statup and type configuration
> -----------------------------------------------------------------------------------------
>
>                 Key: IGNITE-3485
>                 URL: https://issues.apache.org/jira/browse/IGNITE-3485
>             Project: Ignite
>          Issue Type: Bug
>          Components: platforms
>    Affects Versions: 1.6
>            Reporter: Denis Magda
>            Assignee: Pavel Tupitsyn
>            Priority: Critical
>             Fix For: 1.7
>
>         Attachments: OrderEntityDataIgnite.zip
>
>
> If to specify a type in App.config this
> {code}
> <typeConfigurations>
>           <binaryTypeConfiguration typeName='OrderEntityDataIgnite.OrderEntity'/>
>         </typeConfigurations>
> {code}
> or that way
> {code}
> <types>
>        <string>OrderEntityDataIgnite.OrderEntity</string> 
> </types>
> {code}
> and set the query entity for the given type
> {code}
>     <cacheConfiguration>
>       <cacheConfiguration name="OrderCache" cacheMode="Replicated">
>         <queryEntities>
>           <queryEntity keyTypeName="System.Int32" valueTypeName="OrderEntityDataIgnite.OrderEntity">
>           </queryEntity>
>         </queryEntities>
>       </cacheConfiguration>
>     </cacheConfiguration>
> {code}
> Then SqlFields query won't work. 
> To reproduce use attached sample project:
> - uncomment the following gin Program.cs
> {code}
> //QueryList.Add("select OrderId, OrderName, OrderValue, OrderAddress from OrderEntity");
> {code}
> - start Program.cs



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