Editor debugging query
Editor debugging query

How can I view, for debugging purposes, the query generated by the "Editor" component in Visual Studio 2022 APS.NET Core 8?
This question has an accepted answers - jump to answer
How can I view, for debugging purposes, the query generated by the "Editor" component in Visual Studio 2022 APS.NET Core 8?
This question has an accepted answers - jump to answer
Answers
I believe adding
.Debug(true)
before..Process()
will provide the query used in the JSON response. Something like what is used in this thread.Kevin
Yup, as always, exactly what Kevin says. Docs here.
Allan
Great, works very well, thanks to both of you