Florian Hockmann created TINKERPOP-2113:
-------------------------------------------
Summary: 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
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)