Skip to content

Commit b76f287

Browse files
authored
fix: NotInOperatorConfiguration
fix: fixing issue #19: Configuration throwing exception related to No…
2 parents 3a373af + 78bcbe5 commit b76f287

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

QueryKit/Configuration/QueryKitConfiguration.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ public QueryKitConfiguration(Action<QueryKitSettings> configureSettings)
8787
NotEndsWithOperator = settings.NotEndsWithOperator;
8888
InOperator = settings.InOperator;
8989
SoundsLikeOperator = settings.SoundsLikeOperator;
90+
NotInOperator = settings.NotInOperator;
9091
DoesNotSoundLikeOperator = settings.DoesNotSoundLikeOperator;
9192
CaseInsensitiveAppendix = settings.CaseInsensitiveAppendix;
9293
AndOperator = settings.AndOperator;

QueryKit/Configuration/QueryKitSettings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public class QueryKitSettings
1919
public string NotStartsWithOperator { get; set; } = ComparisonOperator.NotStartsWithOperator().Operator();
2020
public string NotEndsWithOperator { get; set; } = ComparisonOperator.NotEndsWithOperator().Operator();
2121
public string InOperator { get; set; } = ComparisonOperator.InOperator().Operator();
22+
public string NotInOperator { get; set; } = ComparisonOperator.NotInOperator().Operator();
2223
public string SoundsLikeOperator { get; set; } = ComparisonOperator.SoundsLikeOperator().Operator();
2324
public string DoesNotSoundLikeOperator { get; set; } = ComparisonOperator.DoesNotSoundLikeOperator().Operator();
2425
public string HasCountEqualToOperator { get; set; } = ComparisonOperator.HasCountEqualToOperator().Operator();

0 commit comments

Comments
 (0)