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

ISqlMapper.QueryForList Method

Executes a Sql SELECT statement that returns data to populate a number of result objects.

The parameter object is generally used to supply the input data for the WHERE clause parameter(s) of the SELECT statement.

Overload List

Executes a Sql SELECT statement that returns data to populate a number of result objects. The parameter object is generally used to supply the input data for the WHERE clause parameter(s) of the SELECT statement.

IList QueryForList(String,Object);

Executes a Sql SELECT statement that returns data to populate a number of result objects. The parameter object is generally used to supply the input data for the WHERE clause parameter(s) of the SELECT statement.

void QueryForList(String,Object,IList);

Executes the SQL and retuns all rows selected. The parameter object is generally used to supply the input data for the WHERE clause parameter(s) of the SELECT statement.

IList QueryForList(String,Object,Int32,Int32);

Executes a Sql SELECT statement that returns data to populate a number of result objects. The parameter object is generally used to supply the input data for the WHERE clause parameter(s) of the SELECT statement.

IList<T> QueryForList<T>(String,Object);

Executes a Sql SELECT statement that returns data to populate a number of result objects. The parameter object is generally used to supply the input data for the WHERE clause parameter(s) of the SELECT statement.

void QueryForList<T>(String,Object,IList<T>);

Executes the SQL and retuns all rows selected. The parameter object is generally used to supply the input data for the WHERE clause parameter(s) of the SELECT statement.

IList<T> QueryForList<T>(String,Object,Int32,Int32);

See Also

ISqlMapper Interface | IBatisNet.DataMapper Namespace