Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.

Commit ad4e496

Browse files
FIND-13264: Filter by enumerated properties
- Remove incorrect function
1 parent 2d343c8 commit ad4e496

File tree

3 files changed

+0
-378
lines changed

3 files changed

+0
-378
lines changed

APIs/src/EpiServer.ContentGraph/Api/Filters/NumericFilterOperators.cs

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,6 @@ public NumericFilterOperators InRange(int? from, int? to)
7171
}
7272
return this;
7373
}
74-
public NumericFilterOperators InRanges(params (int? from, int? to)[] ranges)
75-
{
76-
foreach (var range in ranges)
77-
{
78-
InRange(range.from, range.to);
79-
}
80-
return this;
81-
}
8274

8375
public NumericFilterOperators Eq(float value)
8476
{
@@ -164,21 +156,5 @@ public NumericFilterOperators InRange(double? from, double? to)
164156
}
165157
return this;
166158
}
167-
public NumericFilterOperators InRanges(params (float? from, float? to)[] ranges)
168-
{
169-
foreach (var range in ranges)
170-
{
171-
InRange(range.from, range.to);
172-
}
173-
return this;
174-
}
175-
public NumericFilterOperators InRanges(params (double? from, double? to)[] ranges)
176-
{
177-
foreach (var range in ranges)
178-
{
179-
InRange(range.from, range.to);
180-
}
181-
return this;
182-
}
183159
}
184160
}

0 commit comments

Comments
 (0)