Table of Contents

Class SecuritySchema.DatabaseLedgerDigestLocation

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.database_ledger_digest_locations (Transact-SQL)

Applies to: √ Azure SQL Database

Captures the current and the historical ledger digest storage endpoints for the ledger feature.
For more information on database ledger, see Azure SQL Database ledger.


See sys.database_ledger_digest_locations.

[Table(Schema = "sys", Name = "database_ledger_digest_locations", IsView = true)]
public class SecuritySchema.DatabaseLedgerDigestLocation
Inheritance
SecuritySchema.DatabaseLedgerDigestLocation
Extension Methods

Properties

IsCurrent

Indicates whether this is the current path or a path used in the past.

[Column("is_current")]
[NotNull]
public bool IsCurrent { get; set; }

Property Value

bool

LastDigestBlockID

The block ID for the last digest uploaded.

[Column("last_digest_block_id")]
[NotNull]
public long LastDigestBlockID { get; set; }

Property Value

long

Path

The location of storage digests. For example, a path for a container in Azure Blob storage.

[Column("path")]
[NotNull]
public string Path { get; set; }

Property Value

string