我在项目中将Serilog与Elasticsearch结合使用。但是我需要从JsonProperty序列化对象字段名称。我该怎么做?我认为,我需要使用Newtonsoft.Json设置Serilog,但是我找不到有关此的任何信息。请帮我)
[如果有人正在寻找,则有一个库https://github.com/destructurama/json-net
您可以通过传递JObject
来破坏@
。例如:_logger.LogInformation("ProjectVariables: {@Variables}", projectVariables);
其中projectVariables
是JObject