예제 #1
0
 protected virtual GraphTypeBuilder <GrandchildObject> ConfigureGrandchild(GraphTypeBuilder <GrandchildObject> builder)
 {
     return(builder.IgnoreProperty(x => x.CircularRelationship));
 }
예제 #2
0
 public GraphTypeBuilder <Args> Configure(GraphTypeBuilder <Args> builder)
 => builder.IgnoreProperty(x => x.IgnoredString);
예제 #3
0
 private GraphTypeBuilder <T> ConfigureViaBaseType <T>(GraphTypeBuilder <T> builder) where T : class, IChildObjectBase
 {
     return(builder.IgnoreProperty(x => x.IgnoredViaBase));
 }