Possible NullReferenceException
I've created the following extension method:
request.UserId.Value
:
Nullable value type can be nullWhy it doesn't notice the
request.UserId.HasValue
? Is there an attribute I have to add or smt20 Replies
What does
WhereIf
come from?it's an extension
right above
oh I'm blind lol
I've defined it myself
Nullability analysis can't flow between lambdas like that
is there a way I could specify an attribute like
NotNullWhen
or smt
I guess the question is how do I tell the nullability analysis to evaluate the condition boolean?You can't, there's no attribute which specifies the kind of flow that the lambda will only execute if the condition is true/false
ugh, I guess I'll keep it
.WhereIf(request.UserId.HasValue, x => x.UserId == request.UserId)
in that caseUnknown User•2w ago
Message Not Public
Sign In & Join Server To View
the official .Where implementation from IQueryable doesn't either
Unknown User•2w ago
Message Not Public
Sign In & Join Server To View
Why not
WhereIf(request.UserId.HasValue, x => x.UserId == request.UserId!.Value)
?yeah that works too
yeah, looks like
Unknown User•2w ago
Message Not Public
Sign In & Join Server To View
OfType<T>()
does thatYou can very easily add that yourself
Unknown User•2w ago
Message Not Public
Sign In & Join Server To View
There's also an issue to allow nullability to flow through Where iirc
Unknown User•2w ago
Message Not Public
Sign In & Join Server To View
It would also require special versions for value types and reference types