@@ -58,7 +58,6 @@ public abstract class ComparisonOperator : SmartEnum<ComparisonOperator>
58
58
public static ComparisonOperator HasCountLessThanOrEqualOperator ( bool caseInsensitive = false , bool usesAll = false ) => new HasCountLessThanOrEqualType ( caseInsensitive ) ;
59
59
public static ComparisonOperator HasOperator ( bool caseInsensitive = false , bool usesAll = false ) => new HasType ( caseInsensitive ) ;
60
60
public static ComparisonOperator DoesNotHaveOperator ( bool caseInsensitive = false , bool usesAll = false ) => new DoesNotHaveType ( caseInsensitive ) ;
61
-
62
61
63
62
public static ComparisonOperator GetByOperatorString ( string op , bool caseInsensitive = false , bool usesAll = false )
64
63
{
@@ -175,6 +174,7 @@ public static ComparisonOperator GetByOperatorString(string op, bool caseInsensi
175
174
public const char CaseSensitiveAppendix = '*' ;
176
175
public const char AllPrefix = '%' ;
177
176
public abstract string Operator ( ) ;
177
+ public abstract bool IsCountOperator ( ) ;
178
178
public bool CaseInsensitive { get ; protected set ; }
179
179
public bool UsesAll { get ; protected set ; }
180
180
public abstract Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType ) ;
@@ -191,6 +191,7 @@ public EqualsType(bool caseInsensitive = false, bool usesAll = false) : base("==
191
191
}
192
192
193
193
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
194
+ public override bool IsCountOperator ( ) => false ;
194
195
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
195
196
{
196
197
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -223,6 +224,7 @@ public NotEqualsType(bool caseInsensitive = false, bool usesAll = false) : base(
223
224
}
224
225
225
226
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
227
+ public override bool IsCountOperator ( ) => false ;
226
228
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
227
229
{
228
230
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -255,6 +257,7 @@ public GreaterThanType(bool caseInsensitive = false, bool usesAll = false) : bas
255
257
}
256
258
257
259
public override string Operator ( ) => Name ;
260
+ public override bool IsCountOperator ( ) => false ;
258
261
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
259
262
{
260
263
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -272,6 +275,7 @@ public LessThanType(bool caseInsensitive = false, bool usesAll = false) : base("
272
275
}
273
276
274
277
public override string Operator ( ) => Name ;
278
+ public override bool IsCountOperator ( ) => false ;
275
279
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
276
280
{
277
281
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -285,6 +289,7 @@ public override Expression GetExpression<T>(Expression left, Expression right, T
285
289
private class GreaterThanOrEqualType : ComparisonOperator
286
290
{
287
291
public override string Operator ( ) => Name ;
292
+ public override bool IsCountOperator ( ) => false ;
288
293
public GreaterThanOrEqualType ( bool caseInsensitive = false , bool usesAll = false ) : base ( ">=" , 4 , caseInsensitive , usesAll )
289
294
{
290
295
}
@@ -304,6 +309,7 @@ public LessThanOrEqualType(bool caseInsensitive = false, bool usesAll = false) :
304
309
{
305
310
}
306
311
public override string Operator ( ) => Name ;
312
+ public override bool IsCountOperator ( ) => false ;
307
313
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
308
314
{
309
315
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -321,6 +327,7 @@ public ContainsType(bool caseInsensitive = false, bool usesAll = false) : base("
321
327
}
322
328
323
329
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
330
+ public override bool IsCountOperator ( ) => false ;
324
331
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
325
332
{
326
333
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -348,6 +355,7 @@ public StartsWithType(bool caseInsensitive = false, bool usesAll = false) : base
348
355
}
349
356
350
357
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
358
+ public override bool IsCountOperator ( ) => false ;
351
359
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
352
360
{
353
361
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -375,6 +383,7 @@ public EndsWithType(bool caseInsensitive = false, bool usesAll = false) : base("
375
383
}
376
384
377
385
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
386
+ public override bool IsCountOperator ( ) => false ;
378
387
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
379
388
{
380
389
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -402,6 +411,7 @@ public NotContainsType(bool caseInsensitive = false, bool usesAll = false) : bas
402
411
}
403
412
404
413
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
414
+ public override bool IsCountOperator ( ) => false ;
405
415
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
406
416
{
407
417
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -430,6 +440,7 @@ public NotStartsWithType(bool caseInsensitive = false, bool usesAll = false) : b
430
440
}
431
441
432
442
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
443
+ public override bool IsCountOperator ( ) => false ;
433
444
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
434
445
{
435
446
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -457,6 +468,7 @@ public NotEndsWithType(bool caseInsensitive = false, bool usesAll = false) : bas
457
468
}
458
469
459
470
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
471
+ public override bool IsCountOperator ( ) => false ;
460
472
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
461
473
{
462
474
if ( left . Type . IsGenericType && left . Type . GetGenericTypeDefinition ( ) == typeof ( IEnumerable < > ) )
@@ -484,6 +496,7 @@ public InType(bool caseInsensitive = false, bool usesAll = false) : base("^^", 1
484
496
}
485
497
486
498
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
499
+ public override bool IsCountOperator ( ) => false ;
487
500
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
488
501
{
489
502
var leftType = left . Type == typeof ( Guid ) || left . Type == typeof ( Guid ? )
@@ -533,6 +546,7 @@ public SoundsLikeType(bool caseInsensitive = false, bool usesAll = false) : base
533
546
}
534
547
535
548
public override string Operator ( ) => Name ;
549
+ public override bool IsCountOperator ( ) => false ;
536
550
537
551
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
538
552
{
@@ -561,6 +575,7 @@ public DoesNotSoundLikeType(bool caseInsensitive = false, bool usesAll = false)
561
575
}
562
576
563
577
public override string Operator ( ) => Name ;
578
+ public override bool IsCountOperator ( ) => false ;
564
579
565
580
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
566
581
{
@@ -589,6 +604,7 @@ public HasCountEqualToType(bool caseInsensitive = false, bool usesAll = false) :
589
604
}
590
605
591
606
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
607
+ public override bool IsCountOperator ( ) => true ;
592
608
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
593
609
{
594
610
return GetCountExpression ( left , right , nameof ( Expression . Equal ) ) ;
@@ -602,6 +618,7 @@ public HasCountNotEqualToType(bool caseInsensitive = false, bool usesAll = false
602
618
}
603
619
604
620
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
621
+ public override bool IsCountOperator ( ) => true ;
605
622
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
606
623
{
607
624
return GetCountExpression ( left , right , nameof ( Expression . NotEqual ) ) ;
@@ -615,6 +632,7 @@ public HasCountGreaterThanType(bool caseInsensitive = false, bool usesAll = fals
615
632
}
616
633
617
634
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
635
+ public override bool IsCountOperator ( ) => true ;
618
636
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
619
637
{
620
638
return GetCountExpression ( left , right , nameof ( Expression . GreaterThan ) ) ;
@@ -628,6 +646,7 @@ public HasCountLessThanType(bool caseInsensitive = false, bool usesAll = false)
628
646
}
629
647
630
648
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
649
+ public override bool IsCountOperator ( ) => true ;
631
650
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
632
651
{
633
652
return GetCountExpression ( left , right , nameof ( Expression . LessThan ) ) ;
@@ -641,6 +660,7 @@ public HasCountGreaterThanOrEqualType(bool caseInsensitive = false, bool usesAll
641
660
}
642
661
643
662
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
663
+ public override bool IsCountOperator ( ) => true ;
644
664
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
645
665
{
646
666
return GetCountExpression ( left , right , nameof ( Expression . GreaterThanOrEqual ) ) ;
@@ -654,6 +674,7 @@ public HasCountLessThanOrEqualType(bool caseInsensitive = false, bool usesAll =
654
674
}
655
675
656
676
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
677
+ public override bool IsCountOperator ( ) => true ;
657
678
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
658
679
{
659
680
return GetCountExpression ( left , right , nameof ( Expression . LessThanOrEqual ) ) ;
@@ -667,6 +688,7 @@ public HasType(bool caseInsensitive = false, bool usesAll = false) : base("^$",
667
688
}
668
689
669
690
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
691
+ public override bool IsCountOperator ( ) => false ;
670
692
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
671
693
{
672
694
if ( left . Type . IsGenericType &&
@@ -689,6 +711,7 @@ public DoesNotHaveType(bool caseInsensitive = false, bool usesAll = false) : bas
689
711
}
690
712
691
713
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
714
+ public override bool IsCountOperator ( ) => false ;
692
715
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
693
716
{
694
717
if ( left . Type . IsGenericType &&
@@ -711,6 +734,7 @@ public NotInType(bool caseInsensitive = false, bool usesAll = false) : base("!^^
711
734
}
712
735
713
736
public override string Operator ( ) => CaseInsensitive ? $ "{ Name } { CaseSensitiveAppendix } " : Name ;
737
+ public override bool IsCountOperator ( ) => false ;
714
738
public override Expression GetExpression < T > ( Expression left , Expression right , Type ? dbContextType )
715
739
{
716
740
var leftType = left . Type ;
0 commit comments