Class ScalarResult
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
stringOptional name for return value parameter.
Type
DatabaseTypeType of return value.
Nullable
boolReturn value could contain
NULL
.
Properties
Name
Optional name for return value parameter.
public string? Name { get; init; }
Property Value
Nullable
Return value could contain NULL
.
public bool Nullable { get; init; }
Property Value
Type
Type of return value.
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.