From 7c863bffaf46bcee591effe2a9664863a09a881e Mon Sep 17 00:00:00 2001 From: Rafael Andrade Date: Thu, 9 Jan 2025 16:42:16 +0000 Subject: [PATCH] Fixes compilation issue --- samples/WebAPI/WebAPI_Common/DbMaker/SchemaCreation.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/WebAPI/WebAPI_Common/DbMaker/SchemaCreation.cs b/samples/WebAPI/WebAPI_Common/DbMaker/SchemaCreation.cs index fc61582d3c..8d9eee4c2a 100644 --- a/samples/WebAPI/WebAPI_Common/DbMaker/SchemaCreation.cs +++ b/samples/WebAPI/WebAPI_Common/DbMaker/SchemaCreation.cs @@ -388,14 +388,14 @@ private static void CreateOutboxPostgres(string? connectionString, bool hasBinar sqlConnection.Open(); using NpgsqlCommand existsQuery = sqlConnection.CreateCommand(); - existsQuery.CommandText = PostgreSqlOutboxBulder.GetExistsQuery(OUTBOX_TABLE_NAME); + existsQuery.CommandText = PostgreSqlOutboxBuilder.GetExistsQuery(OUTBOX_TABLE_NAME); object? findOutbox = existsQuery.ExecuteScalar(); bool exists = findOutbox is long and > 0; if (exists) return; using NpgsqlCommand command = sqlConnection.CreateCommand(); - command.CommandText = PostgreSqlOutboxBulder.GetDDL(OUTBOX_TABLE_NAME, hasBinaryPayload); + command.CommandText = PostgreSqlOutboxBuilder.GetDDL(OUTBOX_TABLE_NAME, hasBinaryPayload); command.ExecuteScalar(); }