I am using Neo4j client in my .Net app and this is the code executing in the background :
MERGE (p:Project {projectId : 'yy' })
SET p.projectName='yy',
p.validCount=0,
p.instanceCount=0,
p.allProjectFilePath ='C:\Users\AppData\Local\Temp\tmp6454.tmp'
But my problem is when i retrieve this data i find a space after "Temp" word and the '' char after this word removed :
"allProjectFilePath": "C:\Users\AppData\Local\Temp mp6454.tmp"