Table of Contents

Struct SqlNamedObject<T>

Namespace
LfrlAnvil.Sql.Internal
Assembly
LfrlAnvil.Sql.Core.dll

Represents a named SqlObjectBuilder instance.

public readonly record struct SqlNamedObject<T> : IEquatable<SqlNamedObject<T>> where T : SqlObjectBuilder

Type Parameters

T

SQL object builder type.

Implements
Inherited Members

Constructors

SqlNamedObject(string, T)

Represents a named SqlObjectBuilder instance.

public SqlNamedObject(string Name, T Object)

Parameters

Name string

Name of the object.

Object T

SQL object builder.

Properties

Name

Name of the object.

public string Name { get; init; }

Property Value

string

Object

SQL object builder.

public T Object { get; init; }

Property Value

T