Danley D'mello

Results 10 comments of Danley D'mello

I have similar requirement as well, where I need to match on subset of request path: e.g. /odata/mnt/asset I would like set Endpoint to "/odata/". I tried few options: Endpoint:...

> Question: if you change your route to use parenthesis-based keys (i.e. `http://localhost:4527/odata/mydatasource/Products(1)/DetailInfo`) does this change the result in any way? @julealgon , no, still same issue. To reproduce it,...

@ElizabethOkerio, any update on this? Thanks

It works when this.MergeOption = MergeOption.NoTracking; This is okay for me as my application is Readonly and I don't need tracking on.

@KenitoInc , In my case, the references are cardinality one , not sure if it matters ``` public class ActionPlan { public Guid UniversalID { get; set; } public MapFailureMode...

@ElizabethOkerio , any update yet?

@dnperfors , same problem we are facing, the PowerBI OData feed fails to handle the response in this situation

> The response seems to be Ok. Could you please share your repro? Are you using a dynamic model? Thanks, @ElizabethOkerio for trying this out. Our code is in Azure...

@ElizabethOkerio , Thanks for the update. I took your branch and ran the test using the ODataDynamicModel sample. Query: http://localhost:4527/odata/mydatasource/Products/1/DetailInfo Response: { "@odata.context": "http://localhost:4527/odata/mydatasource/$metadata#DetailInfos/$entity", "ID": 88, "Title": "abc_detailinfo" } Maybe...

Ok, it works for containment navigation property, But what about simple navigation property with navigationproprtybinding e.g DetailInfo? Its not clear from OData specs whats the context url should be.