@@ -36,15 +36,14 @@ public class HasManyThroughAttribute : HasManyAttribute
36
36
/// <param name="internalThroughName">The name of the navigation property that will be used to get the HasMany relationship</param>
37
37
/// <param name="relationshipLinks">Which links are available. Defaults to <see cref="Link.All"/></param>
38
38
/// <param name="canInclude">Whether or not this relationship can be included using the <c>?include=public-name</c> query string</param>
39
- /// <param name="mappedBy">The name of the entity mapped property, defaults to null</param>
40
39
///
41
40
/// <example>
42
41
/// <code>
43
42
/// [HasManyThrough(nameof(ArticleTags), documentLinks: Link.All, canInclude: true)]
44
43
/// </code>
45
44
/// </example>
46
- public HasManyThroughAttribute ( string internalThroughName , Link relationshipLinks = Link . All , bool canInclude = true , string mappedBy = null )
47
- : base ( null , relationshipLinks , canInclude , mappedBy )
45
+ public HasManyThroughAttribute ( string internalThroughName , Link relationshipLinks = Link . All , bool canInclude = true )
46
+ : base ( null , relationshipLinks , canInclude )
48
47
{
49
48
InternalThroughName = internalThroughName ;
50
49
}
@@ -57,15 +56,14 @@ public HasManyThroughAttribute(string internalThroughName, Link relationshipLink
57
56
/// <param name="internalThroughName">The name of the navigation property that will be used to get the HasMany relationship</param>
58
57
/// <param name="documentLinks">Which links are available. Defaults to <see cref="Link.All"/></param>
59
58
/// <param name="canInclude">Whether or not this relationship can be included using the <c>?include=public-name</c> query string</param>
60
- /// <param name="mappedBy">The name of the entity mapped property, defaults to null</param>
61
59
///
62
60
/// <example>
63
61
/// <code>
64
62
/// [HasManyThrough("tags", nameof(ArticleTags), documentLinks: Link.All, canInclude: true)]
65
63
/// </code>
66
64
/// </example>
67
- public HasManyThroughAttribute ( string publicName , string internalThroughName , Link documentLinks = Link . All , bool canInclude = true , string mappedBy = null )
68
- : base ( publicName , documentLinks , canInclude , mappedBy )
65
+ public HasManyThroughAttribute ( string publicName , string internalThroughName , Link documentLinks = Link . All , bool canInclude = true )
66
+ : base ( publicName , documentLinks , canInclude )
69
67
{
70
68
InternalThroughName = internalThroughName ;
71
69
}
0 commit comments