DependencyInjectionScopeAddInjectionInfo Method (Type, Type, String) | 
 
            Adds the injection info passed in to the scope data. Call this method one or more times from an override of 
InitializeScope.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.12.0.0 (5.12.0)
Syntaxprotected void AddInjectionInfo(
	Type instanceType,
	Type targetType,
	string propertyName
)
Protected Sub AddInjectionInfo ( 
	instanceType As Type,
	targetType As Type,
	propertyName As String
)
Parameters
- instanceType
 - Type: SystemType
Type of the instance to inject. - targetType
 - Type: SystemType
Type of the target which contains propertyName and which gets an instance of instanceType injected. - propertyName
 - Type: SystemString
Name of the property to set with an instace of instanceType. 
See Also