Enum RelationKind
Various types of relations between two tables:
Namespace: Syncfusion.Grouping
Assembly: Syncfusion.Grouping.Base.dll
Syntax
public enum RelationKind
Fields
Name | Description |
---|---|
ForeignKeyKeyWords | A foreign key relation where matching keys in columns in the parent and child table define a relationship between two tables. This a m:n relation. Field summaries of the related child table can be referenced using a '.' dot in the FieldDescriptor.MappingName of the main table. |
ForeignKeyReference | A foreign-key relation for looking up values where an id column in the main table can be used to look up a record in a related table. This is an n:1 relation where multiple records in the parent table can reference the same record in the related table. Fields in the related table can be referenced using a '.' dot in the FieldDescriptor.MappingName of the main table. |
ListItemReference | A object reference relation for looking up values from a strong typed collection. |
RelatedMasterDetails | A Master-Details relation where matching keys in columns in the parent and child tables define a relationship between two tables. This a 1:n relation where each record in the child table can only belong to one parent record. |
UniformChildList | Nested strong-typed collection inside a parent collection. |