Table of Contents

Class ScalarResult

Namespace
LinqToDB.Schema
Assembly
linq2db.Tools.dll

Scalar return value descriptor.

public sealed record ScalarResult : Result, IEquatable<Result>, IEquatable<ScalarResult>
Inheritance
ScalarResult
Implements
Inherited Members
Extension Methods

Constructors

ScalarResult(string?, DatabaseType, bool)

Scalar return value descriptor.

public ScalarResult(string? Name, DatabaseType Type, bool Nullable)

Parameters

Name string

Optional name for return value parameter.

Type DatabaseType

Type of return value.

Nullable bool

Return value could contain NULL.

Properties

Name

Optional name for return value parameter.

public string? Name { get; init; }

Property Value

string

Nullable

Return value could contain NULL.

public bool Nullable { get; init; }

Property Value

bool

Type

Type of return value.

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.