search bar finished

This commit is contained in:
2024-09-29 15:47:11 +02:00
Unverified
parent b449135896
commit a0cbded0d7
6 changed files with 41 additions and 3 deletions

View File

@@ -66,7 +66,7 @@ public abstract class QueryParameters
(
!string.IsNullOrEmpty(property)
&&
new Regex(regexQuery).IsMatch(property)
Regex.IsMatch(property, regexQuery, RegexOptions.IgnoreCase)
)
);