Castle.ActiveRecord.Queries.SimpleQuery.InternalExecute C# (CSharp) Method

InternalExecute() protected method

Executes the query and converts the results into a strongly-typed array of returnType.
protected InternalExecute ( ISession session ) : object
session ISession The NHibernate's
return object
		protected override object InternalExecute(ISession session)
		{
			IList results = (IList) base.InternalExecute(session);
			return SupportingUtils.BuildArray(returnType, results, false);
		}
	}