I'm currently spending this week annotating a large project to .NET 6.
In this process I have some code that calls EF.Functions.Like with a property that is now of type nullable string string?. This will produce a warning since this method is annotated to only accept non-nullable string.
See
I think it should be string? matchExpression ?