You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: flakey test
* feat: basic equals soundex
* feat: supports does not sound like
* feat: xml comments on public methods
* docs: soundex
* update: more explicit dbcontext usage and support
no good way to get dbcontext from an iqueryable :-(
* feat: soundex exceptions
* refactor: reset testing migration
Copy file name to clipboardExpand all lines: QueryKit/FilterParser.cs
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,19 @@ namespace QueryKit;
6
6
usingSystem.Reflection;
7
7
usingConfiguration;
8
8
usingExceptions;
9
+
usingMicrosoft.EntityFrameworkCore;
9
10
usingOperators;
10
11
usingSprache;
11
12
12
13
publicstaticclassFilterParser
13
14
{
15
+
/// <summary>
16
+
/// Generates an expression parser to filter data of the specified type.
17
+
/// </summary>
18
+
/// <param name="input">A string that defines the filter parameters.</param>
19
+
/// <param name="config">An optional IQueryKitConfiguration object to provide configuration for parsing, including logical aliases, comparison aliases and property mappings. Defaults to null.</param>
20
+
/// <typeparam name="T">The type of data to be filtered by the returned expression parser.</typeparam>
21
+
/// <returns>Returns a Func delegate that represents a lambda expression that applies the filter defined by the input parameter.</returns>
0 commit comments