Clément Habinshuti
Clément Habinshuti
@JohnYoungers thanks for bringing this to our attention. @xuzhg clarified that this was implemented as a workaround to support comparisons against date-only types. At the time there was the standard...
Hello @soshman I am having a hard time reproducing this, could you share the following information: - The EF Code database provider you're using - The full configuration and setup...
@soshman thanks for sharing the repo. Managed to reproduce the issue. I'll investigate this and try to determine the root cause and get back.
@MikkelGlerup If you're using a single instance of the DataServiceContext throughout your app, and your process is long-running, and client-tracking is enabled, then it's possible that the DataServiceContext's entity tracker...
@Xriuk Seems like the error in the writer validation and no in the select clause. I'm curious, does the same endpoint return the response correctly if you remove the `$select`...
20 seconds definitely sounds excessive. Is the `GetEdmModel()` method getting called once or multiple times in your app? (Ideally it should be called once and cached if your model doesn't...
@caviyacht by any chance, would it be possible to share the model classes that were used to generate the `EdmModel`?
Hi @caviyacht Thanks for sharing the additional information. I've gone through the implementations of the methods in the call stack you shared to try and understand what the issue could...
Let's assume we have a model based on the following classes: ```c# public class EntityA { public int Id { get; set; } public EntityB EntityB { get; set; }...
The cache idea in the previous comment may not be beneficial if your model has many complex types but no nesting of complex types. In such case it would probably...