Function SetForeignKeys
    (Of T,TU)( _
   ByVal parentObject As T, _
   ByVal childObjects As List(Of TU) _
) As Boolean
            Dim instance As IDataHelper Dim parentObject As T Dim childObjects As List(Of TU) Dim value As Boolean value = instance.SetForeignKeys(Of T, TU)(parentObject, childObjects)
bool SetForeignKeys<T,TU>( T parentObject, List<TU> childObjects )
bool SetForeignKeys<T,TU>( T* parentObject, List<TU*>* childObjects )
bool SetForeignKeysgeneric<typename T> generic<typename TU> ( T^ parentObject, List<TU^>^ childObjects )
Parameters
- parentObject
 - The parent entity
 - childObjects
 - A list of child entities
 
Type Parameters
- T
 - Generic class type
 - TU