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
@@ -10,11 +9,7 @@ public class AttrFilterQuery : BaseFilterQuery
10
9
publicAttrFilterQuery(
11
10
IJsonApiContextjsonApiContext,
12
11
FilterQueryfilterQuery)
13
-
:base(jsonApiContext,
14
-
null,
15
-
filterQuery.Attribute,
16
-
filterQuery.Value,
17
-
filterQuery.OperationType)
12
+
:base(jsonApiContext,filterQuery)
18
13
{
19
14
if(Attribute==null)
20
15
thrownewJsonApiException(400,$"'{filterQuery.Attribute}' is not a valid attribute.");
@@ -25,7 +20,7 @@ public AttrFilterQuery(
25
20
FilteredAttribute=Attribute;
26
21
}
27
22
28
-
[Obsolete("Use "+nameof(Attribute)+" property of "+nameof(BaseAttrQuery)+"class. This property is shared for all AttrQuery and RelatedAttrQuery (filter,sort..) implementations.")]
[Obsolete("Key has been replaced by '"+nameof(Attribute)+"'. Members should be located by their public name, not by coercing the provided value to the internal name.")]
32
32
publicstringKey{get;set;}
33
33
publicstringValue{get;set;}
34
-
[Obsolete("Operation has been replaced by '"+nameof(OperationType)+"'. OperationType is typed enum value for Operation property. This should be default property for providing operation type, because of unsustainable string (not typed) value.")]
0 commit comments