Skip to main content
A newer version of this page is available. .

UnionNode.Type Property

Gets or sets the union type.

Namespace: DevExpress.DataAccess.DataFederation

Assembly: DevExpress.DataAccess.v20.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.WindowsDesktop.DataAccess

Declaration

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