Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
protected void AddInjectionInfo(
	Type instanceType,
	Type targetType,
	string propertyName
)

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