Castle.ActiveRecord.ActiveRecordBaseQuery.InternalEnumerate C# (CSharp) Méthode

InternalEnumerate() protected méthode

Simply creates the query and then call its IQuery.Enumerable() method. Note: Only use when you expect most of the results to be in the second level cache
protected InternalEnumerate ( ISession session ) : IEnumerable
session ISession The NHibernate's
Résultat IEnumerable
		protected virtual IEnumerable InternalEnumerate(ISession session)
		{
			return CreateQuery(session).Enumerable();
		}