Skip to content

Commit f6e765d

Browse files
Formatting.
1 parent 8f607a6 commit f6e765d

File tree

2 files changed

+1
-2
lines changed
  • backend

2 files changed

+1
-2
lines changed

backend/src/Squidex.Data.EntityFramework/Providers/Postgres/JsonFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static class JsonFunction
1919
private const int TypeBoolean = 3;
2020
private const int TypeNumber = 4;
2121

22-
private static readonly Dictionary<(int Type, CompareOperator Operator), string> Functions = new()
22+
private static readonly Dictionary<(int Type, CompareOperator Operator), string> Functions = new ()
2323
{
2424
[(TypeAny, CompareOperator.Empty)] = "jsonb_empty",
2525
[(TypeAny, CompareOperator.Exists)] = "jsonb_exists",

backend/tests/Squidex.Data.Tests/EntityFramework/Infrastructure/Queries/EFQueryTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,6 @@ private async Task<List<long>> QueryAsync(ClrQuery query, bool includeSpecialCas
17771777
.Where(query);
17781778

17791779
var (sql, parameters) = queryBuilder.Compile();
1780-
File.WriteAllText("D:\\last.json", sql);
17811780
var dbResult = await dbContext.Set<TestEntity>().FromSqlRaw(sql, parameters).ToListAsync();
17821781

17831782
return dbResult.Select(x => x.Number).Where(x => includeSpecialCase || x != 21).ToList();

0 commit comments

Comments
 (0)