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 e352ad2 commit 4511e8bCopy full SHA for 4511e8b
slo/src/EF/SloTableContext.cs
@@ -77,7 +77,7 @@ int readTimeout
77
{
78
await using var dbContext = client();
79
await dbContext.SloEntities
80
- .SingleAsync(table => table.Guid == select.Guid && table.Id == select.Id);
+ .FirstAsync(table => table.Guid == select.Guid && table.Id == select.Id);
81
82
return (0, StatusCode.Success, null);
83
}
0 commit comments