Class TupleResult
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
boolReturn tuple could be
NULL
.
Properties
Fields
Ordered tuple fields.
public IReadOnlyCollection<ScalarResult> Fields { get; init; }
Property Value
Nullable
Return tuple could be NULL
.
public bool Nullable { 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.