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
Copy file name to clipboardExpand all lines: src/JsonApiDotNetCore/Queries/Expressions/AnyExpression.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@
6
6
namespaceJsonApiDotNetCore.Queries.Expressions;
7
7
8
8
/// <summary>
9
-
/// This expression tests if an attribute value equals any of the specified constants. It represents the "any" filter function, resulting from
10
-
/// text such as:
9
+
/// This expression tests if an attribute value equals any of the specified constants. It represents the "any" filter function, resulting from text such
Copy file name to clipboardExpand all lines: src/JsonApiDotNetCore/Queries/Expressions/IsTypeExpression.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@
6
6
namespaceJsonApiDotNetCore.Queries.Expressions;
7
7
8
8
/// <summary>
9
-
/// This expression tests if a resource in an inheritance hierarchy can be upcast to a derived type, optionally with a condition where the
10
-
/// derived type is accessible. It represents the "isType" filter function, resulting from text such as:
9
+
/// This expression tests if a resource in an inheritance hierarchy can be upcast to a derived type, optionally with a condition where the derived type
10
+
/// is accessible. It represents the "isType" filter function, resulting from text such as:
Copy file name to clipboardExpand all lines: src/JsonApiDotNetCore/Resources/IResourceDefinition.cs
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -176,7 +176,8 @@ public interface IResourceDefinition<TResource, in TId>
176
176
/// <summary>
177
177
/// Executes before setting the resources at the right side of a to-many relationship. This replaces on existing set.
178
178
/// <para>
179
-
/// Implementing this method enables performing validations and making changes to <paramref name="rightResourceIds" />, before the relationship is updated.
179
+
/// Implementing this method enables performing validations and making changes to <paramref name="rightResourceIds" />, before the relationship is
/// Executes before adding resources to the right side of a to-many relationship, as part of a POST relationship request.
204
205
/// <para>
205
-
/// Implementing this method enables performing validations and making changes to <paramref name="rightResourceIds" />, before the relationship is updated.
206
+
/// Implementing this method enables performing validations and making changes to <paramref name="rightResourceIds" />, before the relationship is
/// Executes before removing resources from the right side of a to-many relationship, as part of a DELETE relationship request.
239
241
/// <para>
240
-
/// Implementing this method enables performing validations and making changes to <paramref name="rightResourceIds" />, before the relationship is updated.
242
+
/// Implementing this method enables performing validations and making changes to <paramref name="rightResourceIds" />, before the relationship is
/// Executes before writing the changed resource to the underlying data store, as part of a write request.
262
265
/// <para>
263
-
/// Implementing this method enables performing validations and making changes to <paramref name="resource" />, after the fields from the request have been
264
-
/// copied into it.
266
+
/// Implementing this method enables performing validations and making changes to <paramref name="resource" />, after the fields from the request have
267
+
/// been copied into it.
265
268
/// </para>
266
269
/// <para>
267
270
/// An example usage is to set the last-modification timestamp, overwriting the value from the incoming request.
/// This expression calls the user-defined "decrypt_column_value" database function. It represents the "decrypt" function, resulting from text
8
-
/// such as:
7
+
/// This expression calls the user-defined "decrypt_column_value" database function. It represents the "decrypt" function, resulting from text such as:
Copy file name to clipboardExpand all lines: test/JsonApiDotNetCoreTests/IntegrationTests/QueryStrings/CustomFunctions/IsUpperCase/IsUpperCaseExpression.cs
/// This expression tests if the value of a JSON:API attribute is upper case. It represents the "isUpperCase" filter function, resulting from
8
-
/// text such as:
7
+
/// This expression tests if the value of a JSON:API attribute is upper case. It represents the "isUpperCase" filter function, resulting from text such
0 commit comments