up vote 12 down vote favorite
6
share [g+] share [fb]

Title says it all.

From what I understand I need to end up with this

<property name="hibernate.generate_statistics">true</property>

on the session factory configuration, but I've no idea how to do that with fluent nhibernate.

Thanks

Andrew

link|improve this question

68% accept rate
feedback

2 Answers

up vote 14 down vote accepted
Configuration.ExposeConfiguration(c => c.SetProperty("generate_statistics", "true"));
link|improve this answer
Worked great for me! – MoJo2600 Dec 29 '10 at 7:37
feedback

Depending on how you're configuring Fluent NHibernate, the Database Configuration has a Raw method that you can use to specify settings that we haven't implemented yet.

SQLiteConfiguration.Standard
  .Raw("hibernate.generate_statistics", "true");
link|improve this answer
1  
Thanks. Leaving out the hibernate part worked for me: xxxx.Raw("generate_statistics", "true"); – KevinT Apr 22 '09 at 19:28
But it seems that this is more natural way using Fluent. – Restuta Jan 9 '11 at 15:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.