Is there a way to auto expand nested entity in the response with odata 5.7?
Because by default we have to add ?$expand=myNestedEntity
As an alternative, this can be accomplished with fluent api.
fluent api
builder.EntitySet("MyType").EntityType.Expand(SelectExpandType.Automatic, "ExpandedField1", "ExpandedField2");