Class RelationalClusteringColumn
- Namespace
- eQuantic.Core.Data.Relational
- Assembly
- eQuantic.Core.Data.Relational.dll
An ordered-read column: the migration materializes a multi-column index with the declared directions.
public sealed record RelationalClusteringColumn : IEquatable<RelationalClusteringColumn>
- Inheritance
-
RelationalClusteringColumn
- Implements
- Inherited Members
Constructors
RelationalClusteringColumn(RelationalColumn, bool)
An ordered-read column: the migration materializes a multi-column index with the declared directions.
public RelationalClusteringColumn(RelationalColumn Column, bool Descending)
Parameters
ColumnRelationalColumnThe column.
DescendingboolWhether the declared order is descending.
Properties
Column
The column.
public RelationalColumn Column { get; init; }
Property Value
Descending
Whether the declared order is descending.
public bool Descending { get; init; }