Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created February 16, 2013 08:48
Show Gist options
  • Save wullemsb/4966120 to your computer and use it in GitHub Desktop.
Save wullemsb/4966120 to your computer and use it in GitHub Desktop.
Set TimeOut on NHibernate ICriteria
var products=unitOfWork
.Session
.CreateCriteria<Product>()
.SetTimeout(120)
.List<Product>();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment