Table of Contents

Struct SqlConnectionStringEntry

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

Represents a single connection string entry.

public readonly record struct SqlConnectionStringEntry : IEquatable<SqlConnectionStringEntry>
Implements
Inherited Members

Constructors

SqlConnectionStringEntry(string, object, bool)

Represents a single connection string entry.

public SqlConnectionStringEntry(string Key, object Value, bool IsMutable)

Parameters

Key string

Key of this entry.

Value object

Value of this entry.

IsMutable bool

Specifies whether or not this entry can be changed.

Properties

IsMutable

Specifies whether or not this entry can be changed.

public bool IsMutable { get; init; }

Property Value

bool

Key

Key of this entry.

public string Key { get; init; }

Property Value

string

Value

Value of this entry.

public object Value { get; init; }

Property Value

object