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

MappedStatement.ExecuteQueryForDictionary Method (ISqlMapSession, Object, String, String, DictionaryRowDelegate<K,V>)

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

[Visual Basic]
Overridable Overloads Public Function ExecuteQueryForDictionary( _
   ByVal ISqlMapSession As ISqlMapSession, _
   ByVal Object As Object, _
   ByVal String As String, _
   ByVal String As String, _
   ByVal DictionaryRowDelegate<K,V> As DictionaryRowDelegate{``0,``1} _
) As IDictionary{``0,``1} _
    Implements IMappedStatement.
[C#]
public virtual IDictionary<K,V> <K,V>ExecuteQueryForDictionary(
   ISqlMapSession session,
   Object parameterObject,
   String keyProperty,
   String valueProperty,
   DictionaryRowDelegate<K,V> rowDelegate
);

Parameters

session
The session used to execute the statement
parameterObject
The object used to set the parameters in the SQL.
keyProperty
The property of the result object to be used as the key.
valueProperty
The property of the result object to be used as the value (or null)
rowDelegate
A delegate called once per row in the QueryForDictionary method

Return Value

A hashtable of object containing the rows keyed by keyProperty.

Implements

IMappedStatement.

Exceptions

Exception Type Condition
DataMapperException If a transaction is not in progress, or the database throws an exception.

See Also

MappedStatement Class | IBatisNet.DataMapper.MappedStatements Namespace | MappedStatement.ExecuteQueryForDictionary Overload List