@@ -67,7 +67,7 @@ public interface IContextGraph
67
67
/// <summary>
68
68
/// Get the public attribute name for a type based on the internal attribute name.
69
69
/// </summary>
70
- /// <param name="internalAttributeName">The internal attribute name for a <see cref="Attr " />.</param>
70
+ /// <param name="internalAttributeName">The internal attribute name for a <see cref="AttrAttribute " />.</param>
71
71
string GetPublicAttributeName < TParent > ( string internalAttributeName ) ;
72
72
73
73
/// <summary>
@@ -103,18 +103,18 @@ internal ContextGraph(List<ContextEntity> entities, bool usesDbContext, List<Val
103
103
Instance = this ;
104
104
}
105
105
106
- /// </ inheritdoc>
106
+ /// <inheritdoc / >
107
107
public bool UsesDbContext { get ; }
108
108
109
- /// </ inheritdoc>
109
+ /// <inheritdoc / >
110
110
public ContextEntity GetContextEntity ( string entityName )
111
111
=> Entities . SingleOrDefault ( e => string . Equals ( e . EntityName , entityName , StringComparison . OrdinalIgnoreCase ) ) ;
112
112
113
- /// </ inheritdoc>
113
+ /// <inheritdoc / >
114
114
public ContextEntity GetContextEntity ( Type entityType )
115
115
=> Entities . SingleOrDefault ( e => e . EntityType == entityType ) ;
116
116
117
- /// </ inheritdoc>
117
+ /// <inheritdoc / >
118
118
public object GetRelationship < TParent > ( TParent entity , string relationshipName )
119
119
{
120
120
var parentEntityType = entity . GetType ( ) ;
@@ -152,7 +152,7 @@ private IEnumerable<IIdentifiable> GetHasManyThrough(IIdentifiable parent, HasMa
152
152
}
153
153
}
154
154
155
- /// </ inheritdoc>
155
+ /// <inheritdoc / >
156
156
public string GetRelationshipName < TParent > ( string relationshipName )
157
157
{
158
158
var entityType = typeof ( TParent ) ;
@@ -163,6 +163,7 @@ public string GetRelationshipName<TParent>(string relationshipName)
163
163
? . InternalRelationshipName ;
164
164
}
165
165
166
+ /// <inheritdoc />
166
167
public string GetPublicAttributeName < TParent > ( string internalAttributeName )
167
168
{
168
169
return GetContextEntity ( typeof ( TParent ) )
0 commit comments