对,我有一个非常简单的问题,但我不能为我的生活想到真正简单的答案。 这段代码应该返回一个单独的'Person',包含一系列语言和国家。
return client.Cypher
.Match("(person:Person)")
.Where((Person person) => person.Email == username)
.OptionalMatch("(person)-[:SPEAKS]-(language:Language)")
.OptionalMatch("(person)-[:CURRENT_LOCATION]-(country:Country)"
.Return((person, language, country) => new ProfileObject
{
Person = person.As<Person>(),
Language = language.CollectAs<Language>(),
Country = country.CollectAs<Country>()
}).Results.ToList();
它看起来对我来说,但它不是,在构建中我得到这个错误,我理解但无法解决。
Cannot implicitly convert type 'System.Collections.Generic.IEnumerable<Neo4jClient.Node<Graph.Country>>' to 'Graph.Country'. An explicit conversion exists (are you missing a cast?)
语言类看起来像这样
public class Language
{
public string Name { get; set; }
}
ProfileObject类如下所示:
public class ProfileObject
{
public Person Person { get; set; }
public Language Language { get; set; }
public Country Country { get; set; }
}
我真的被困了,请帮帮忙。
答案 0 :(得分:2)
CollectAs
返回一组节点。
您需要将ProfileObject
更改为:
public class ProfileObject
{
public Person Person { get; set; }
public IEnumerable<Node<Language>> Language { get; set; }
public IEnumerable<Node<Country>> Country { get; set; }
}
在即将发布的软件包更新中,Node<T>
包装已从签名中删除,因此它只是:
public class ProfileObject
{
public Person Person { get; set; }
public IEnumerable<Language> Language { get; set; }
public IEnumerable<Country> Country { get; set; }
}
如果您想立即获得更清晰的签名,请查看NuGet上的预发布包(https://www.nuget.org/packages/Neo4jClient/1.1.0-Tx00009)。