Amitabh
Amitabh

Reputation: 61167

Changing CommandTimeout for nHibernate Session

How to change command Timeout for a session in nHibernate. I know it can be done in App.Config but I want to increase the default value only for one business operation.

Upvotes: 4

Views: 1733

Answers (1)

Mauricio Scheffer
Mauricio Scheffer

Reputation: 99720

I don't think you can do this session-wide, but you can control timeouts for both individual IQuery and ICriteria with SetTimeout().

Upvotes: 7

Related Questions