We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29de4e5 commit 40c1f72Copy full SHA for 40c1f72
slo/src/EF/SloTableContext.cs
@@ -82,8 +82,9 @@ int readTimeout
82
)
83
{
84
await using var dbContext = await client.CreateDbContextAsync();
85
- return (0, StatusCode.Success, await dbContext.SloEntities.FirstOrDefaultAsync(
86
- table => table.Guid == select.Guid && table.Id == select.Id));
+ return (0, StatusCode.Success,
+ await dbContext.SloEntities.FirstOrDefaultAsync(
87
+ table => table.Guid == select.Guid && table.Id == select.Id));
88
}
89
90
protected override async Task<int> SelectCount(PooledDbContextFactory<TableDbContext> client)
0 commit comments