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 a26e096 commit 8831ce2Copy full SHA for 8831ce2
src/JsonApiDotNetCore/Models/Annotation/EagerLoadAttribute.cs
@@ -12,10 +12,11 @@ namespace JsonApiDotNetCore.Models
12
/// <example><![CDATA[
13
/// public class User : Identifiable
14
/// {
15
- /// [Attr(isImmutable: true)]
+ /// [Attr(AttrCapabilities.AllowFilter | AttrCapabilities.AllowSort)]
16
/// [NotMapped]
17
/// public string DisplayName => Name.First + " " + Name.Last;
18
///
19
+ /// [EagerLoad]
20
/// public Name Name { get; set; }
21
/// }
22
0 commit comments