Public Function RecordsToObjects(Of T As {Class, New})( _ ByVal records As List(Of Dictionary(Of String,Object)), _ ByVal map As LoadWithChildrenMap _ ) As List(Of T)
Dim instance As LoadWithChildrenLogic Dim records As List(Of Dictionary(Of String,Object)) Dim map As LoadWithChildrenMap Dim value As List(Of T) value = instance.RecordsToObjects(Of T)(records, map)
public List<T> RecordsToObjects<T>( List<Dictionary<string,object>> records, LoadWithChildrenMap map ) where T: class, new()
public: List<T*>* RecordsToObjects<T>( List<Dictionary<string*,Object*>*>* records, LoadWithChildrenMap* map ) where T: ref class, gcnew()
public: List<T^>^ RecordsToObjectsgeneric<typename T> ( List<Dictionary<String^,Object^>^>^ records, LoadWithChildrenMap^ map ) where T: ref class, gcnew()
Parameters
- records
- The records.
- map
- The map.
Type Parameters
- T
Return Value
List<T>.