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

SqlMapper.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.

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

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

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

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

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

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

See Also

SqlMapper Class | IBatisNet.DataMapper Namespace