DbConnectionPlus API Documentation
Search Results for

    Show / Hide Table of Contents

    Class InterpolatedTemporaryTable

    A sequence of values, created from an expression in an interpolated string, to be passed to an SQL statement as a temporary table.

    Inheritance
    object
    InterpolatedTemporaryTable
    Implements
    IEquatable<InterpolatedTemporaryTable>
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    Namespace: RentADeveloper.DbConnectionPlus.SqlStatements
    Assembly: RentADeveloper.DbConnectionPlus.dll
    Syntax
    public record InterpolatedTemporaryTable : IEquatable<InterpolatedTemporaryTable>

    Constructors

    View Source

    InterpolatedTemporaryTable(InterpolatedTemporaryTable)

    Declaration
    protected InterpolatedTemporaryTable(InterpolatedTemporaryTable original)
    Parameters
    Type Name Description
    InterpolatedTemporaryTable original
    View Source

    InterpolatedTemporaryTable(string, IEnumerable, Type)

    A sequence of values, created from an expression in an interpolated string, 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 table.

    IEnumerable Values

    The values with which to populate the table.

    Type ValuesType

    The type of values in Values.

    Properties

    View Source

    EqualityContract

    Declaration
    protected virtual Type EqualityContract { get; }
    Property Value
    Type Description
    Type
    View Source

    Name

    The name for the table.

    Declaration
    public string Name { get; init; }
    Property Value
    Type Description
    string
    View Source

    Values

    The values with which to populate the table.

    Declaration
    public IEnumerable Values { get; init; }
    Property Value
    Type Description
    IEnumerable
    View Source

    ValuesType

    The type of values in Values.

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

    Methods

    View Source

    Deconstruct(out string, out IEnumerable, out Type)

    Declaration
    public void Deconstruct(out string Name, out IEnumerable Values, out Type ValuesType)
    Parameters
    Type Name Description
    string Name
    IEnumerable Values
    Type ValuesType
    View Source

    Equals(InterpolatedTemporaryTable?)

    Declaration
    public virtual bool Equals(InterpolatedTemporaryTable? other)
    Parameters
    Type Name Description
    InterpolatedTemporaryTable other
    Returns
    Type Description
    bool
    View Source

    Equals(object?)

    Declaration
    public override bool Equals(object? obj)
    Parameters
    Type Name Description
    object obj
    Returns
    Type Description
    bool
    Overrides
    object.Equals(object)
    View Source

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    Overrides
    object.GetHashCode()
    View Source

    PrintMembers(StringBuilder)

    Declaration
    protected virtual bool PrintMembers(StringBuilder builder)
    Parameters
    Type Name Description
    StringBuilder builder
    Returns
    Type Description
    bool
    View Source

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    string
    Overrides
    object.ToString()

    Operators

    View Source

    operator ==(InterpolatedTemporaryTable?, InterpolatedTemporaryTable?)

    Declaration
    public static bool operator ==(InterpolatedTemporaryTable? left, InterpolatedTemporaryTable? right)
    Parameters
    Type Name Description
    InterpolatedTemporaryTable left
    InterpolatedTemporaryTable right
    Returns
    Type Description
    bool
    View Source

    operator !=(InterpolatedTemporaryTable?, InterpolatedTemporaryTable?)

    Declaration
    public static bool operator !=(InterpolatedTemporaryTable? left, InterpolatedTemporaryTable? right)
    Parameters
    Type Name Description
    InterpolatedTemporaryTable left
    InterpolatedTemporaryTable right
    Returns
    Type Description
    bool

    Implements

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