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

ISqlMapper.QueryForDictionary Method (String, Object, String)

Executes the SQL and retuns all rows selected in a map that is keyed on the property named in the keyProperty parameter. The value at each key will be the entire result object.

[Visual Basic]
Function QueryForDictionary( _
   ByVal String As String, _
   ByVal Object As Object, _
   ByVal String As String _
) As IDictionary{``0,``1}
[C#]
IDictionary<K,V> <K,V>QueryForDictionary(
   String statementName,
   Object parameterObject,
   String keyProperty
);

Parameters

statementName
The name of the sql statement to execute.
parameterObject
The object used to set the parameters in the SQL.
keyProperty
The property of the result object to be used as the key.

Return Value

A IDictionary of object containing the rows keyed by keyProperty.

See Also

ISqlMapper Interface | IBatisNet.DataMapper Namespace | ISqlMapper.QueryForDictionary Overload List