flibustier7seas
flibustier7seas
Any updates?
I was faced with a similar problem. In my case, the problem was that the property was containment navigation property. Request: http://localhost:63773/ODataExample/Users?$expand=Orders($expand=OrderPositions($expand=Products($expand=Parameters))) ```csharp builder.EntitySet("Users"); builder.EntitySet("Orders"); builder.EntitySet("OrderPositions"); builder.EntitySet("Products"); builder.EntityType() .Expand(10, nameof(User.Orders))...
@bdebaere https://github.com/flibustier7seas/odata-example
@bdebaere In this case you set all properties expandable with maximum depth of expand result of this structural type. ```csharp builder.EntityType() .Expand(10) //.Expand(10, nameof(User.Orders)) // The property will be marked...
Hi! I'm also encountering the same issue: - https://community.sonatype.com/t/how-to-enable-skip-duplicate-nuget-feature/13001