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

MappedStatement.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).

public virtual IList ExecuteQueryForList(ISqlMapSession,Object);

Executes the SQL and and fill a strongly typed collection.

public virtual void ExecuteQueryForList(ISqlMapSession,Object,IList);

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

public virtual 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).

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

Executes the SQL and and fill a strongly typed collection.

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

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

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

See Also

MappedStatement Class | IBatisNet.DataMapper.MappedStatements Namespace