Skip to main content
All docs
V25.1
  • UnionNode.Type Property

    Gets or sets the union type.

    Namespace: DevExpress.DataAccess.DataFederation

    Assembly: DevExpress.DataAccess.v25.1.dll

    NuGet Package: DevExpress.DataAccess

    Declaration

    [Browsable(false)]
    public UnionType Type { get; set; }

    Property Value

    Type Description
    UnionType

    A UnionType value that specifies the result set in the query.

    Available values:

    Name Description
    Union

    Duplicated rows from different queries (if they contain the same data) are removed, only one row is returned.

    UnionAll

    All duplicated rows from different queries (if they contain the same data) are returned in the result query.

    See Also