manoack

Results 4 comments of manoack

As a workaround you can downgrade your Microsoft.Extensions.DependencyInjection and Microsoft.Extensions.DependencyInjection.Abstractions package to version 1.0 and it will works.

> @manoack Is https://github.com/OData/odata.net/blob/master/src/Microsoft.OData.Core/ODataPayloadValueConverter.cs what you are looking for? I'm not sure, I find no way to inject it. I try to extend the ODataRoutingExample: ` .AddRouteComponents("", model0, action =>...

Hmmm... I think i run in the same problem like you wrote on https://github.com/OData/AspNetCoreOData/discussions/603. Now I try to understand your approach and apply them correctly. Then I will come back.

[OData8.zip](https://github.com/OData/AspNetCoreOData/files/10120034/OData8.zip) I create an example, here is a part of my model: ```csharp [DataContract] public class Parent1 { [DataMember] public Child Child { get; set; } [DataMember] public int Id...