I have one console application and Miniprofiler has been added to this application.
Now I want to store Miniprofiler data in a database. I created a script to create tables in a database. You can find the script here !
I reviewed the answer on this
But how to save profiler values ββin related tables?
In MVC below, the line is used to store values:
MiniProfiler.Settings.Storage = new SqlServerStorage("<your connection string>");
How to save these values ββfrom the console application?
source share