Skip to content

Commit 14d175b

Browse files
committed
use convention based attr
1 parent 23dbad0 commit 14d175b

File tree

1 file changed

+1
-1
lines changed
  • src/Examples/JsonApiDotNetCoreExample/Models

1 file changed

+1
-1
lines changed

src/Examples/JsonApiDotNetCoreExample/Models/Article.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class Article : Identifiable
1414
public int AuthorId { get; set; }
1515

1616
[NotMapped]
17-
[HasManyThrough("tags", nameof(ArticleTags))]
17+
[HasManyThrough(nameof(ArticleTags))]
1818
public List<Tag> Tags { get; set; }
1919
public List<ArticleTag> ArticleTags { get; set; }
2020
}

0 commit comments

Comments
 (0)