Table of Contents

Class ResultColumn

Namespace
LinqToDB.Schema
Assembly
linq2db.Tools.dll

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 string

Column name.

Type DatabaseType

Column type.

Nullable bool

Column allows NULL values.

Properties

Name

Column name.

public string? Name { get; init; }

Property Value

string

Nullable

Column allows NULL values.

public bool Nullable { get; init; }

Property Value

bool

Type

Column type.

public DatabaseType Type { get; init; }

Property Value

DatabaseType

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.