gpt4 book ai didi

neo4j - Neo4j可以在节点中存储字典吗?

转载 作者:行者123 更新时间:2023-12-02 01:52:55 29 4
gpt4 key购买 nike

我正在使用 c# 并使用 neo4jclient。我知道如果我向 Neo4jclient 传递一个类对象,它可以创建一个节点(我已经尝试过)现在在我的类(class)中我想添加一个字典属性,但这不起作用。我的代码:

 GraphClient client = getConnection();
client.Cypher
.Merge("(user:User { uniqueIdInItsApp: {id} , appId: {appId} })")
.OnCreate()
.Set("user = {newUser}")
.WithParams(new
{
id = user.uniqueIdInItsApp,
appId = user.appId,
newUser = user
})
.ExecuteWithoutResults();

User 包含一个属性,该属性是 C# 中的 Dictionary。执行密码时显示错误

MatchError: Map() (of class scala.collection.convert.Wrappers$JMapWrapper)

有人可以帮助我吗?

最佳答案

默认情况下,Neo4j 不处理字典(Java 中的 map ),因此唯一真正的解决方案是使用自定义序列化程序并将字典序列化为字符串属性...

下面的代码仅适用于给定的类型,您需要执行类似的操作,以便可以尽可能使用默认处理,并且仅针对您的类型使用此转换器:

//This is what I'm serializing
public class ThingWithDictionary
{
public int Id { get; set; }
public IDictionary<int, string> IntString { get; set; }
}

//This is the converter
public class ThingWithDictionaryJsonConverter : JsonConverter
{
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
{
var twd = value as ThingWithDictionary;
if (twd == null)
return;

JToken t = JToken.FromObject(value);
if (t.Type != JTokenType.Object)
{
t.WriteTo(writer);
}
else
{
var o = (JObject)t;
//Store original token in a temporary var
var intString = o.Property("IntString");
//Remove original from the JObject
o.Remove("IntString");
//Add a new 'InsString' property 'stringified'
o.Add("IntString", intString.Value.ToString());
//Write away!
o.WriteTo(writer);
}
}

public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
{
if (objectType != typeof(ThingWithDictionary))
return null;

//Load our object
JObject jObject = JObject.Load(reader);
//Get the InsString token into a temp var
var intStringToken = jObject.Property("IntString").Value;
//Remove it so it's not deserialized by Json.NET
jObject.Remove("IntString");

//Get the dictionary ourselves and deserialize
var dictionary = JsonConvert.DeserializeObject<Dictionary<int, string>>(intStringToken.ToString());

//The output
var output = new ThingWithDictionary();
//Deserialize all the normal properties
serializer.Populate(jObject.CreateReader(), output);

//Add our dictionary
output.IntString = dictionary;

//return
return output;
}

public override bool CanConvert(Type objectType)
{
//Only can convert if it's of the right type
return objectType == typeof(ThingWithDictionary);
}
}

然后在 Neo4jClient 中使用:

var client = new GraphClient(new Uri("http://localhost:7474/db/data/"));
client.Connect();
client.JsonConverters.Add( new ThingWithDictionaryJsonConverter());

然后,它会在可能的情况下使用该转换器。

关于neo4j - Neo4j可以在节点中存储字典吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23132187/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com