iBATIS.NET Class Library DataMapper V1.6.1, DataAccess V1.9.1

IMappedStatement.ExecuteQueryForList Method

Executes the SQL and retuns all rows selected. This is exactly the same as calling ExecuteQueryForList(session, parameterObject, NO_SKIPPED_RESULTS, NO_MAXIMUM_RESULTS).

Overload List

Executes the SQL and retuns all rows selected. This is exactly the same as calling ExecuteQueryForList(session, parameterObject, NO_SKIPPED_RESULTS, NO_MAXIMUM_RESULTS).

IList ExecuteQueryForList(ISqlMapSession,Object);

Executes the SQL and and fill a strongly typed collection.

void ExecuteQueryForList(ISqlMapSession,Object,IList);

Executes the SQL and retuns a subset of the rows selected.

IList ExecuteQueryForList(ISqlMapSession,Object,Int32,Int32);

Executes the SQL and retuns all rows selected. This is exactly the same as calling ExecuteQueryForList(session, parameterObject, NO_SKIPPED_RESULTS, NO_MAXIMUM_RESULTS).

IList<T> ExecuteQueryForList<T>(ISqlMapSession,Object);

Executes the SQL and and fill a strongly typed collection.

void ExecuteQueryForList<T>(ISqlMapSession,Object,IList<T>);

Executes the SQL and retuns a subset of the rows selected.

IList<T> ExecuteQueryForList<T>(ISqlMapSession,Object,Int32,Int32);

See Also

IMappedStatement Interface | IBatisNet.DataMapper.MappedStatements Namespace