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

Florian Hockmann reassigned TINKERPOP-2113:
-------------------------------------------

    Assignee: Florian Hockmann

> P.Within() doesn't work when given a List argument
> --------------------------------------------------
>
>                 Key: TINKERPOP-2113
>                 URL: https://issues.apache.org/jira/browse/TINKERPOP-2113
>             Project: TinkerPop
>          Issue Type: Bug
>          Components: dotnet
>    Affects Versions: 3.2.10
>            Reporter: Florian Hockmann
>            Assignee: Florian Hockmann
>            Priority: Minor
>
> In short, this test fails with the modern graph:
> {code:c#}
> var names = new List<string> {"josh", "vadas"};
> var count = g.V().Has("name", P.Within(names)).Count().Next();
> Assert.Equal(2, count);
> {code}
> but this works:
> {code:c#}
> var count = g.V().Has("name", P.Within("josh", "vadas")).Count().Next();
> Assert.Equal(2, count);;
> {code}
> for which we already have a test case.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to