UnionOperation
Represents a UNION or UNION ALL operation
public sealed record UnionOperation : IEquatable<UnionOperation>
Constructors
UnionOperation
public UnionOperation(string Query, bool IsUnionAll)
Represents a UNION or UNION ALL operation
| Parameter | Type | Description |
|---|---|---|
Query |
String |
|
IsUnionAll |
Boolean |
Properties
Query
public string Query { get; init; }
IsUnionAll
public bool IsUnionAll { get; init; }