Login or Sign Up to become a member!
LessThanDot Sit Logo

LessThanDot

Desktop Developer

Less Than Dot is a community of passionate IT professionals and enthusiasts dedicated to sharing technical knowledge, experience, and assistance. Inside you will find reference materials, interesting technical discussions, and expert tips and commentary. Once you register for an account you will have immediate access to the forums and all past articles and commentaries.

LTD Social Sitings

Lessthandot twitter Lessthandot Linkedin Lessthandot friendfeed Lessthandot facebook Lessthandot rss

Note: Watch for social icons on posts by your favorite authors to follow their postings on these and other social sites.

Your profile

Search

XML Feeds

Google Ads

Tags: nhprof

comments
Rate Post:
submit to reddit Digg!FacebookDotnetkicks

Ok so here is how NHProf has helped me solve a problem. This one in particular is a Select N+1 problem which means is that you are executing the same select several times in one session which usualy means you are doing something wrong.

First up the code.

When doing a find all on a class called Fibergroup I get this as a result from NHProf.

Read More...
comments
Rate Post:
submit to reddit Digg!FacebookDotnetkicks

As a user of nHibernate it was about time I got to check out NHProf. NHProf is a profiler for nHibernate applications. In other words you can see what SQL nHinernate is producing and it also gives alerts for parts that have suspect code in it.

First of course I had to download the package you can have a 30 day trail to go so you can test it on your application. I just bought it. Let's not forget that this is still in Beta so because of that you get a discount for when the full version comes out.

Then I had to set it up to work with my applic...

Read More...