SqlConnectionPlus API Documentation
Search Results for

    Show / Hide Table of Contents

    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
    IEquatable<InterpolatedTemporaryTable>
    Inherited Members
    ValueType.Equals(object)
    ValueType.GetHashCode()
    ValueType.ToString()
    object.Equals(object, object)
    object.GetType()
    object.ReferenceEquals(object, object)
    Namespace: RentADeveloper.SqlConnectionPlus.SqlStatements
    Assembly: RentADeveloper.SqlConnectionPlus.dll
    Syntax
    public readonly record struct InterpolatedTemporaryTable : IEquatable<InterpolatedTemporaryTable>

    Constructors

    | Edit this page View Source

    InterpolatedTemporaryTable(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 Values.

    Properties

    | Edit this page View Source

    Name

    The name for the temporary table.

    Declaration
    public string Name { get; init; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Values

    The values to populate the temporary table with.

    Declaration
    public IEnumerable Values { get; init; }
    Property Value
    Type Description
    IEnumerable
    | Edit this page View Source

    ValuesType

    The type of values in Values.

    Declaration
    public Type ValuesType { get; init; }
    Property Value
    Type Description
    Type

    Implements

    IEquatable<T>
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX