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

Pavel Tupitsyn updated IGNITE-12532:
------------------------------------
    Description: 
Populate QueryField.IsKeyField 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 keyType="System.String" ...>
          <fields>
            <queryField fieldType="System.String" name="EntityId" 
isKeyField="true" />
          </fields>
        </queryEntity>
{code}

  was:
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}


> .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 QueryField.IsKeyField 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 keyType="System.String" ...>
>           <fields>
>             <queryField fieldType="System.String" name="EntityId" 
> isKeyField="true" />
>           </fields>
>         </queryEntity>
> {code}



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

Reply via email to