Ben McCallum

Results 21 issues of Ben McCallum

**Describe the bug** Unlike v10, v11 authorization middleware requires that a user be authenticated before it is evaluated against the policy. These are the culprit lines as `TryGetAuthenticatedPrincipal` will return...

🐛 bug
🌶️ hot chocolate
Area: Security
📌 pinned

fixes: #1184

**Repro** Go here: https://sqlkata.com/playground/sqlserver Paste this: ``` bool? lol = true; bool lol2 = true; var query = new Query("Users").Where("lol", lol).Where("lol2", lol2); ``` SQL Server doesn't support true/false, only 0...

Seems strange as the readme [https://github.com/awaescher/RepoZ#dependencies-%EF%B8%8E](here) mentions 4.7.2. I followed the Windows Features prompts and installed it, but would be keen to uninstall it if you say it's not required;...

Fixes #466 # Fixes # Makes `RequestValidator` thread-safe by not holding on to instances of the crypto algos used and instead new'ing them up and disposing of them per validation....

```c# using Dasync.Collections; var booking = _dbContext.Bookings.SingleAsync(b => b.Id == id, cancellationToken); ``` This will result in the booking sometimes being grabbed, but in most cases it seems like much...

Could we support pluralized table names for all the generic methods like `Insert`? I see it just defaults to a table with a name the same as type T. I...

enhancement

Addresses my idea in #245

needs confirmation

Hi, thx for all this different health checks. Great library. We've got a microservices kinda architecture, and we're currently looking at weaving in health checks, but one thing that's complicated...