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/10/27 10:35:00 UTC

[jira] [Updated] (IGNITE-14343) .NET: Allow arbitrary MemberInit projections in LINQ

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

Pavel Tupitsyn updated IGNITE-14343:
------------------------------------
    Fix Version/s:     (was: 2.12)

> .NET: Allow arbitrary MemberInit projections in LINQ
> ----------------------------------------------------
>
>                 Key: IGNITE-14343
>                 URL: https://issues.apache.org/jira/browse/IGNITE-14343
>             Project: Ignite
>          Issue Type: Improvement
>          Components: platforms
>            Reporter: Pavel Tupitsyn
>            Assignee: Pavel Tupitsyn
>            Priority: Major
>              Labels: .NET, LINQ
>
> Ignite LINQ provider allows anonymous type projections:
> {code}
> query.Select(emp => new {Id = emp.Key, Name = emp.Value.Name});
> {code}
> However, it does not work with a custom class:
> {code}
> query.Select(emp => new Foo {Id = emp.Key, Name = emp.Value.Name});
> {code}
> throws exception:
> {code}
> System.NotSupportedException : The expression 'new Foo() {Id = [x].Key}' (type: System.Linq.Expressions.MemberInitExpression) is not supported.
> {code}
> Add VisitMemberInit overload to CacheQueryExpressionVisitor to support this scenario. See linked SO page for more details - there is a proposed fix as well.



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