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 2021/06/22 14:08:00 UTC

[jira] [Assigned] (IGNITE-7562) .NET: Binary object as dynamic object

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

Pavel Tupitsyn reassigned IGNITE-7562:
--------------------------------------

    Assignee:     (was: Pavel Tupitsyn)

> .NET: Binary object as dynamic object
> -------------------------------------
>
>                 Key: IGNITE-7562
>                 URL: https://issues.apache.org/jira/browse/IGNITE-7562
>             Project: Ignite
>          Issue Type: Improvement
>          Components: platforms
>            Reporter: Pavel Tupitsyn
>            Priority: Major
>              Labels: .NET
>
> Provide a way to access {{IBinaryObject}} fields through C# {{dynamic}} API:
> {code}
> IBinaryObject obj = cache.Get(1);
> var name = obj.GetField<string>("Name");  // Current API
> dynamic dynObj = obj.AsDynamic();
> name = dynObj.Name;  // Proposed API
> {code}



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