[
https://issues.apache.org/jira/browse/TINKERPOP-2113?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Florian Hockmann closed TINKERPOP-2113.
---------------------------------------
Resolution: Fixed
Fix Version/s: 3.3.5
3.4.0
> 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
> Fix For: 3.4.0, 3.3.5
>
>
> 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)