From cd3ee166766e28e2c5b36b97937398e8939b010d Mon Sep 17 00:00:00 2001 From: Koen Bekkenutte <2912652+kbekkenutte@users.noreply.github.com> Date: Tue, 26 Oct 2021 18:54:03 +0800 Subject: [PATCH] Fixed logging in sample --- samples/ReadmeSample/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/ReadmeSample/Program.cs b/samples/ReadmeSample/Program.cs index 94d551f..13d7c2c 100644 --- a/samples/ReadmeSample/Program.cs +++ b/samples/ReadmeSample/Program.cs @@ -42,7 +42,7 @@ namespace ReadmeSample var result = query.First(); Console.WriteLine($"Jons latest order had a grant total of {result.GrandTotal}"); - Console.WriteLine($"The following query was used to fetch the results:"); + Console.WriteLine($"The following query was used to fetch the results: {query.ToQueryString()}"); } } }