Table of Contents

Class RelationalSearchColumn

Namespace
eQuantic.Core.Data.Relational
Assembly
eQuantic.Core.Data.Relational.dll

A search-indexed text column: the migration materializes an index serving LIKE where the dialect can.

public sealed record RelationalSearchColumn : IEquatable<RelationalSearchColumn>
Inheritance
RelationalSearchColumn
Implements
Inherited Members

Constructors

RelationalSearchColumn(RelationalColumn, SearchMode)

A search-indexed text column: the migration materializes an index serving LIKE where the dialect can.

public RelationalSearchColumn(RelationalColumn Column, SearchMode Mode)

Parameters

Column RelationalColumn

The column.

Mode SearchMode

What the declaration promises to match (Contains serves any pattern).

Properties

Column

The column.

public RelationalColumn Column { get; init; }

Property Value

RelationalColumn

Mode

What the declaration promises to match (Contains serves any pattern).

public SearchMode Mode { get; init; }

Property Value

SearchMode