EntityRelationAddEntityFieldPairTEntityField Method |
Adds a new pair of entity field instances to the relation. Primary Key fields and Foreign Key Fields have to be added
in pairs.
Namespace: SD.LLBLGen.Pro.ORMSupportClassesAssembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntax public void AddEntityFieldPair<TEntityField>(
TEntityField primaryKeyField,
TEntityField foreignKeyField
)
where TEntityField : IEntityFieldCore
Public Sub AddEntityFieldPair(Of TEntityField As IEntityFieldCore) (
primaryKeyField As TEntityField,
foreignKeyField As TEntityField
)
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
Implements
IEntityRelationAddEntityFieldPairTEntityField(TEntityField, TEntityField)See Also