當運行以下代碼時,我收到一個異常「CypherTypeException:包含混合類型的集合不能存儲在屬性中。」 - 我做錯了什麼,需要改變什麼才能使它工作?如何讓Neo4JClient執行批量插入
var wordObjs = new List<object>();
foreach (string word in WordGroups.GetAllWords())
{
wordObjs.Add(new { Value = word});
}
GraphClient.Cypher
.Create("(word:Word {words})")
.WithParam("words", new { words = wordObjs})
.ExecuteWithoutResults();
你試過改變var var wordObjs = new List