Castle.ActiveRecord.Queries.SimpleQuery.InternalExecute C# (CSharp) 메소드

InternalExecute() 보호된 메소드

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