Click or drag to resize
ParameterFieldRelation Constructor
CTor

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
public ParameterFieldRelation(
	IEntityFieldCore field,
	DbParameter parameter,
	TypeConverter typeConverterToUse,
	bool parameterValueCanBeNull
)

Parameters

field
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldCore
The IEntityFieldCore in the relationship.
parameter
Type: System.Data.CommonDbParameter
The Parameter in the relationship.
typeConverterToUse
Type: System.ComponentModelTypeConverter
The type converter to use, if applicable (can be null)
parameterValueCanBeNull
Type: SystemBoolean
if set to true it's allowed that the parameter value to sync with the field can be null. If false and the parameter value is null, an ORMBadSequenceException will be thrown
See Also