Skip to main content
All docs
V25.1
  • QueryBuildingExtensions.UnionAll(QueryNode, QueryNode) Method

    Combines rows from two or more queries into a single data set. Duplicates rows from different queries when they contain the same data.

    Namespace: DevExpress.DataAccess.DataFederation

    Assembly: DevExpress.DataAccess.v25.1.dll

    NuGet Package: DevExpress.DataAccess

    Declaration

    public static UnionNodeBuilder UnionAll(
        this QueryNode node,
        QueryNode added
    )

    Parameters

    Name Type Description
    node QueryNode

    A node in the federated query.

    added QueryNode

    A node in the federated query.

    Returns

    Type Description
    UnionNodeBuilder

    A UnionNodeBuilder object on which a method is being called.

    See Also