save checkpoint

This commit is contained in:
master
2026-02-11 01:32:14 +02:00
parent 5593212b41
commit cf5b72974f
2316 changed files with 68799 additions and 3808 deletions

View File

@@ -19,6 +19,13 @@ public sealed partial class PostgresTrustVerdictRepository : ITrustVerdictReposi
_dataSource = dataSource ?? throw new ArgumentNullException(nameof(dataSource));
}
/// <summary>
/// Reads a <see cref="TrustVerdictEntity"/> from the current row of a <see cref="System.Data.Common.DbDataReader"/>.
/// Delegates to <see cref="PostgresTrustVerdictReaderHelper.ReadEntity"/>.
/// </summary>
internal static TrustVerdictEntity ReadEntity(System.Data.Common.DbDataReader reader)
=> PostgresTrustVerdictReaderHelper.ReadEntity(reader);
private async Task<IReadOnlyList<TrustVerdictEntity>> ExecuteQueryAsync(
string sql,
Guid tenantId,