NHibernate.ICiteria crit = Session.CreateCriteria(typeof(Employee)).List
();
The List() function works like "Select * from EmployeeTable". The
question I have is that what type of locking is being used when
performing this List()? If List() applys a lock on the table before
retrieving data, how can I set it to NOLOCK? Any help would be greatly
appreciated.
Kashif |