[jira] [Created] (IGNITE-5297) .NET: DML update via LINQ

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (IGNITE-5297) .NET: DML update via LINQ

Anton Vinogradov (Jira)
Pavel Tupitsyn created IGNITE-5297:
--------------------------------------

             Summary: .NET: DML update via LINQ
                 Key: IGNITE-5297
                 URL: https://issues.apache.org/jira/browse/IGNITE-5297
             Project: Ignite
          Issue Type: New Feature
          Components: platforms
    Affects Versions: 2.1
            Reporter: Pavel Tupitsyn
             Fix For: 2.2


Bulk update with LINQ:

{code}
var persons = ignite.GetCache<int, Person>("persons").AsCacheQueryable();

int affectedRows = persons.Where(x => x.Key > 10).UpdateAll(x => x.Value.OrgId = 7);
{code}

See bulk delete with {{RemoveAll}}, IGNITE-4904.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)