We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad2625d commit f13af09Copy full SHA for f13af09
src/JsonApiDotNetCore/Queries/Internal/QueryableBuilding/WhereClauseBuilder.cs
@@ -301,9 +301,6 @@ protected override MemberExpression CreatePropertyExpressionForFieldChain(IReadO
301
302
private static string GetPropertyName(ResourceFieldAttribute field)
303
{
304
- // TODO: Is this still true when using has() with a filter?
305
-
306
- // In case of a HasManyThrough access (from count() or has() function), we only need to look at the number of entries in the join table.
307
return field is HasManyThroughAttribute hasManyThrough ? hasManyThrough.ThroughProperty.Name : field.Property.Name;
308
}
309
0 commit comments