corelibraries-devexpress-dot-dataaccess-dot-datafederation-1f004b48.md
Describes the relation and contains key column names and a relation condition operator.
Namespace : DevExpress.DataAccess.DataFederation
Assembly : DevExpress.DataAccess.v25.2.dll
NuGet Package : DevExpress.DataAccess
public sealed class FederationRelationColumnInfo :
RelationColumnInfoBase
Public NotInheritable Class FederationRelationColumnInfo
Inherits RelationColumnInfoBase
The FederationMasterDetailInfo.KeyColumns property provides access to the list of FederationRelationColumnInfo objects.
To create a master-detail relationship between two queries, add an instance of the FederationMasterDetailInfo object to the Relations collection:
Note
The complete sample project How to Create a Federated Data Source at Runtime is available in the DevExpress Examples repository.
using DevExpress.DataAccess.DataFederation;
// ...
federation.Relations.Add(new FederationMasterDetailInfo() {
MasterQueryName = "Orders",
DetailQueryName = "OrderDetail",
KeyColumns = {
new FederationRelationColumnInfo(){
ParentKeyColumn="OrderID",
NestedKeyColumn ="OrderID",
ConditionOperator= FederationConditionType.Equal
}
}
}
Imports DevExpress.DataAccess.DataFederation
' ...
federation.Relations.Add(
New FederationMasterDetailInfo("Orders",
"OrderDetail",
New FederationRelationColumnInfo() With
{.ParentKeyColumn = "OrderID",
.NestedKeyColumn = "OrderID",
.ConditionOperator = FederationConditionType.Equal}))
Object DevExpress.DataAccess.RelationColumnInfoBase FederationRelationColumnInfo
See Also