Click or drag to resize

IEntityRelationAddEntityFieldPairTEntityField Method

Adds a new pair of entity fields of type TEntityField to the relation, including persistence info. Primary Key fields and Foreign Key Fields have to be added in pairs. Used by Adapter template set.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntax
IEntityRelation AddEntityFieldPair<TEntityField>(
	TEntityField primaryKeyField,
	TEntityField foreignKeyField
)
where TEntityField : IEntityFieldCore

Parameters

primaryKeyField
Type: TEntityField
The entity field instance which represents a field in the primary key in the relation
foreignKeyField
Type: TEntityField
The entity field instance which represents the corresponding field in the foreign key in the relation

Type Parameters

TEntityField
The type of the fields.

Return Value

Type: IEntityRelation
this instance
See Also