Struct InterpolatedTemporaryTable
A sequence of values created from an interpolated sequence of values to be passed to an SQL statement as a temporary table.
Implements
Inherited Members
Namespace: RentADeveloper.SqlConnectionPlus.SqlStatements
Assembly: RentADeveloper.SqlConnectionPlus.dll
Syntax
public readonly record struct InterpolatedTemporaryTable : IEquatable<InterpolatedTemporaryTable>
Constructors
| Edit this page View SourceInterpolatedTemporaryTable(string, IEnumerable, Type)
A sequence of values created from an interpolated sequence of values to be passed to an SQL statement as a temporary table.
Declaration
public InterpolatedTemporaryTable(string Name, IEnumerable Values, Type ValuesType)
Parameters
| Type | Name | Description |
|---|---|---|
| string | Name | The name for the temporary table. |
| IEnumerable | Values | The values to populate the temporary table with. |
| Type | ValuesType | The type of values in |
Properties
| Edit this page View SourceName
The name for the temporary table.
Declaration
public string Name { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
Values
The values to populate the temporary table with.
Declaration
public IEnumerable Values { get; init; }
Property Value
| Type | Description |
|---|---|
| IEnumerable |
ValuesType
The type of values in Values.
Declaration
public Type ValuesType { get; init; }
Property Value
| Type | Description |
|---|---|
| Type |