Closed zachkinstner closed 11 years ago
Currently, you have to do this to store a query result to a variable:
IWeaverVarAlias<User> u; IWeaverQuery userQ = Weave.Inst.Graph .V.ExactIndex<User>(x => x.ArtifactId, pUserId) .ToQuery(); userQ = WeaverQuery.StoreResultAsVar("u", userQ, out u);
But this would be nicer, right?
IWeaverVarAlias<User> u; IWeaverQuery userQ = Weave.Inst.Graph .V.ExactIndex<User>(x => x.ArtifactId, pUserId) .ToQueryAsVar("u", out u);
Currently, you have to do this to store a query result to a variable:
But this would be nicer, right?