Table of Contents

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

Column RelationalColumn

The column.

Descending bool

Whether the declared order is descending.

Properties

Column

The column.

public RelationalColumn Column { get; init; }

Property Value

RelationalColumn

Descending

Whether the declared order is descending.

public bool Descending { get; init; }

Property Value

bool