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
ColumnRelationalColumnThe column.
ModeSearchModeWhat the declaration promises to match (
Containsserves any pattern).
Properties
Column
The column.
public RelationalColumn Column { get; init; }
Property Value
Mode
What the declaration promises to match (Contains serves any pattern).
public SearchMode Mode { get; init; }