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

Pavel Tupitsyn updated IGNITE-12532:
------------------------------------
    Summary: .NET: Recognize fields with KeyAttribute and set 
QueryField.IsKeyField  (was: .NET: Recognize fields with KeyAttribute and set 
QueryEntity.KeyFieldName)

> .NET: Recognize fields with KeyAttribute and set QueryField.IsKeyField
> ----------------------------------------------------------------------
>
>                 Key: IGNITE-12532
>                 URL: https://issues.apache.org/jira/browse/IGNITE-12532
>             Project: Ignite
>          Issue Type: Bug
>          Components: platforms
>            Reporter: Pavel Tupitsyn
>            Assignee: Pavel Tupitsyn
>            Priority: Major
>              Labels: .NET, newbie
>
> Populate QueryEntity.KeyFieldName automatically when 
> System.ComponentModel.DataAnnotations.KeyAttribute is present. See 
> {{QueryEntity.ScanAttributes}}.
> This:
> {code}
> class Person
> {
>     [QuerySqlField]
>     [Key]
>     public string EntityId {get; set;}
> }
> ...
> new QueryEntity(typeof(string), typeof(Person))
> {code}
> Should be equivalent to this:
> {code}
>         <queryEntity keyFieldName="EntityId" keyType="System.String" 
> tableName="ENTITIESTABLEINFO" valueType="ENTITIESTABLEINFO">
>           <fields>
>             <queryField fieldType="System.String" name="EntityId" />
>           </fields>
>         </queryEntity>
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to