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

SqlMapper.QueryWithRowDelegate Method

Runs a query for list with a custom object that gets a chance to deal with each row as it is processed.

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

Overload List

Runs a query for list with a custom object that gets a chance to deal with each row as it is processed. The parameter object is generally used to supply the input data for the WHERE clause parameter(s) of the SELECT statement.

public IList QueryWithRowDelegate(String,Object,RowDelegate);

Runs a query for list with a custom object that gets a chance to deal with each row as it is processed. The parameter object is generally used to supply the input data for the WHERE clause parameter(s) of the SELECT statement.

public IList<T> QueryWithRowDelegate<T>(String,Object,RowDelegate<T>);

See Also

SqlMapper Class | IBatisNet.DataMapper Namespace