@@ -95,21 +95,6 @@ public HasManyThroughAttribute(string publicName, string internalThroughName, Li
95
95
/// </example>
96
96
public PropertyInfo LeftProperty { get ; internal set ; }
97
97
98
- /// <summary>
99
- /// The identity property back to the parent resource.
100
- /// </summary>
101
- ///
102
- /// <example>
103
- /// In the `[HasManyThrough("tags", nameof(ArticleTags))]` example
104
- /// this would point to the `Article.ArticleTags.ArticleId` property
105
- ///
106
- /// <code>
107
- /// public int ArticleId { get; set; }
108
- /// </code>
109
- ///
110
- /// </example>
111
- public PropertyInfo LeftIdProperty { get ; internal set ; }
112
-
113
98
/// <summary>
114
99
/// The navigation property to the related resource from the join type.
115
100
/// </summary>
@@ -125,32 +110,6 @@ public HasManyThroughAttribute(string publicName, string internalThroughName, Li
125
110
/// </example>
126
111
public PropertyInfo RightProperty { get ; internal set ; }
127
112
128
- /// <summary>
129
- /// The identity property back to the related resource from the join type.
130
- /// </summary>
131
- ///
132
- /// <example>
133
- /// In the `[HasManyThrough("tags", nameof(ArticleTags))]` example
134
- /// this would point to the `Article.ArticleTags.TagId` property
135
- ///
136
- /// <code>
137
- /// public int TagId { get; set; }
138
- /// </code>
139
- ///
140
- /// </example>
141
- public PropertyInfo RightIdProperty { get ; internal set ; }
142
-
143
- /// <summary>
144
- /// Get the name of the identity property from the navigation property.
145
- /// </summary>
146
- ///
147
- /// <example>
148
- /// In the `[HasManyThrough("tags", nameof(ArticleTags))]` example
149
- /// this would translate to the `Article.ArticleTags.Tag` property
150
- /// to TagId. This is then used to set the Left and RightIdProperties.
151
- /// </example>
152
- public virtual string GetIdentityPropertyName ( PropertyInfo property ) => property . Name + "Id" ;
153
-
154
113
/// <summary>
155
114
/// The join entity property on the parent resource.
156
115
/// </summary>
0 commit comments