mvc-mini-profiler Questions
4
Solved
Just upgraded a web project to .NET 6.0. Project compiles but when I run the site I get the following error:
InvalidOperationException: Cannot find compilation library location
for package 'System...
Topliffe asked 5/12, 2021 at 16:57
4
I’m having problems getting MiniProfiler to show me the reports. I’m just in the Dev environment, which should show it all the time. Adding ?pp=help does bring up the help page. In tmp/miniprofile,...
Cleavland asked 14/8, 2012 at 15:49
8
I have an Extension method on DbContext where I want to do a SqlBulkCopy. Therefore I need a SqlConnection. The connection from the DbContext is from the type DbConnection though.
Among a few othe...
Fatherly asked 3/6, 2013 at 20:17
1
Solved
I've added the following code to my asp.net core .net 5 app that works with entity framework. In startup.cs I have:
services.AddMiniProfiler(options =>
{
options.PopupRenderPosition = StackExc...
Mordant asked 19/12, 2020 at 14:52
3
Solved
I added this to my Global.asax.cs:
protected void Application_BeginRequest()
{
if (Request.IsLocal)
{
MiniProfiler.Start();
}
}
protected void Application_EndRequest()
{
MiniProfiler.Stop();...
Steffy asked 13/9, 2013 at 15:54
2
I'm using MiniProfiler to profile my ASP.NET 4 Webform application. In localhost it works fine, but when I deploy to IIS7 I receive the following error:
System.Web.Routing.UrlRoutingModule does no...
Blotter asked 4/9, 2012 at 17:9
3
Solved
I'm using MVC Mini profiler to check the speed of specific parts of my application, and would like to keep it there just in case something happens later and I may need to check "what's going wrong"...
Savell asked 29/9, 2011 at 23:49
1
I can't seem to get any results from MiniProfiler.
I can see the XHR POST to /mini-profiler-resources/results returning a 404. The chrome request inspector gives me a standard server 404 page.
...
Housecoat asked 10/8, 2017 at 0:9
1
Solved
I found only this manual describing how to make MiniProfiler work with ASP.NET Web API and Swagger UI, but I didn't find any manual describing how to make ASP.NET Core Web API work with MiniProfile...
Rivkarivkah asked 7/3, 2018 at 11:11
1
Miniprofiler on my site has stopped working. In Chrome console, I get a 500 error on:
/mini-profiler-resources/includes.js?v=4.0.0.0
The error is:
Server Error in '/' Application.
System....
Oloughlin asked 2/10, 2017 at 10:29
3
How can I use the mvc-mini-profiler in a C# console application?
Also curious, does the mvc mini profiler put the actual profiled statistics in the left side of each web page or is that just custo...
Lankton asked 11/9, 2011 at 11:15
2
I have a similar issue in that after loading MiniProfiler and MiniProfiler.EnitiyFramework6 I have this issue. MiniProfiler runs fine, but when I add to my Applcation_Start in Global.asax
MiniProf...
Longboat asked 19/11, 2014 at 16:57
2
I'm using miniprofiler in MVC project on App_Start() method I invoke
MiniProfilerEF6.Initialize()
and I get the error :
the Entity Framework was already using a DbConfiguration
instance befo...
Suzannsuzanna asked 5/1, 2015 at 9:23
5
Unable to cast object of type 'MvcMiniProfiler.Data.EFProfiledDbConnection' to type 'System.Data.SqlClient.SqlConnection'.
I am trying to upgrade to MvcMiniProfiler 1.9.0 and I keep getting this w...
Wares asked 29/12, 2011 at 15:15
1
Cross-posted on the MiniProfiler community.
I'm trying to throw MiniProfiler into my current stack. I think I'm mostly setup, but am missing the UI approach and would like recommendations on the b...
Superpose asked 7/7, 2016 at 15:26
1
We have started using MiniProfiler and it is showing that sometimes, particularly when we hit F5 when running in Visual Studio that the first 3 - 5 calls to an action are very slow before any of ou...
Minnich asked 30/5, 2013 at 7:13
1
Solved
Sometimes when using the miniprofiler, there's just some requests that you doesn't care about. In my case I don't care much about signalr, umbraco pings, and some requests made when I wanna know if...
Warehouse asked 5/4, 2016 at 12:41
3
Solved
Recently we upgraded to MiniProfiler version 2.0.1 from v1.7, and since then we have not been able to use it in our MVC3 website because when it tries to get its resources, it instead gets a 404.
...
Phonologist asked 24/4, 2012 at 19:22
1
Solved
My web.config file:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<configSections>
<section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewrite...
Richmond asked 27/7, 2015 at 12:29
2
Edit
Got the answer here
So I wanted to check out MiniProfiler to troubleshoot some performance issues.
Before using it on production code I wanted to try it out with the a sample so went ahead wi...
Mastoid asked 29/3, 2014 at 5:45
0
I have two separated projects "MyWeb" and "MyAPI", MyWEB is a one-page site with one controller and one view, it is based on the knockout MVVM and ajax requests to the MyAPI web application, this t...
Sverdlovsk asked 27/1, 2015 at 11:7
1
I get the error "MiniProfiler.list is undefined" error when trying to load the miniprofiler list:
/mini-profiler-resources/results-index
The javascript miniprofiler injects doesn't have any metho...
Phaih asked 15/7, 2014 at 9:36
1
I'm trying to get time with this code using MiniProfiler.
var profiler = StackExchange.Profiling.MiniProfiler.Current;
But it returns 0 ms in result. How to get current time in miniprofiler.
...
Presentational asked 12/8, 2014 at 4:4
2
Solved
Iv been experimenting the great tool, Mvc MiniProfiler.
I don't want to litter all my view with lots of Step commands, so I am wanting to use the profiler with every action call. Bad idea? This is...
Inness asked 28/6, 2011 at 13:55
1
Solved
After upgrading from MiniProfiler v2 to v3 the ProfilingActionFilter & ProfilingViewEngine appear to be missing?
I've googled and even checked the assembly for something similar, but there is ...
Crossbar asked 4/6, 2014 at 11:0
1 Next >
© 2022 - 2024 — McMap. All rights reserved.