Class ResultColumn
Column descriptor for table function or procedure result set.
public sealed record ResultColumn : IEquatable<ResultColumn>
- Inheritance
-
ResultColumn
- Implements
- Extension Methods
Constructors
ResultColumn(string?, DatabaseType, bool)
Column descriptor for table function or procedure result set.
public ResultColumn(string? Name, DatabaseType Type, bool Nullable)
Parameters
Name
stringColumn name.
Type
DatabaseTypeColumn type.
Nullable
boolColumn allows
NULL
values.
Properties
Name
Column name.
public string? Name { get; init; }
Property Value
Nullable
Column allows NULL
values.
public bool Nullable { get; init; }
Property Value
Type
Column type.
public DatabaseType Type { get; init; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.