Table of Contents

Class TupleResult

Namespace
LinqToDB.Schema
Assembly
linq2db.Tools.dll

Tuple-like return type descriptor.

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

Constructors

TupleResult(IReadOnlyCollection<ScalarResult>, bool)

Tuple-like return type descriptor.

public TupleResult(IReadOnlyCollection<ScalarResult> Fields, bool Nullable)

Parameters

Fields IReadOnlyCollection<ScalarResult>

Ordered tuple fields.

Nullable bool

Return tuple could be NULL.

Properties

Fields

Ordered tuple fields.

public IReadOnlyCollection<ScalarResult> Fields { get; init; }

Property Value

IReadOnlyCollection<ScalarResult>

Nullable

Return tuple could be NULL.

public bool Nullable { get; init; }

Property Value

bool

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.