Kennedy Kang'ethe

Results 158 comments of Kennedy Kang'ethe

@f-camera Was your issue resolved?

@cppcraze Look at the tests from this line https://github.com/OData/odata.net/blob/370cd96aa2a78aecff1b7f9ebe9bebaa7c25ab81/test/FunctionalTests/Microsoft.OData.Core.Tests/ScenarioTests/UriParser/FilterAndOrderByFunctionalTests.cs#L1619

Closing due to inactivity

Closing this issue since it's been inactive for long @MinhMit Feel free to reopen incase the issue was not resolved

@ccyen8358 It's by design. ModelID allows us to reference to the correct IEdmModel

@cap7ainjack For you to get that error message in the response, there must be a validation issue in your query options. The Action Filter will always short circuit the request...

I think there was a clear reason why by design, applying `query options` (`$filter` applied on `$expand`) required an `EntitySetPath`. The proposed fix in this PR was to assist in...

It seems by design, we cannot have a separator at the last token in a header. Separations include `=` `,` and `;` Code throwing the exception https://github.com/OData/odata.net/blob/67365d65e0a98199820c076076e2e5978089d3f8/src/Microsoft.OData.Core/HttpHeaderValueLexer.cs#L556C90-L556C90 Tests https://github.com/OData/odata.net/blob/67365d65e0a98199820c076076e2e5978089d3f8/test/FunctionalTests/Microsoft.OData.Core.Tests/HttpHeaderValueLexerTests.cs#L162 https://github.com/OData/odata.net/blob/67365d65e0a98199820c076076e2e5978089d3f8/test/FunctionalTests/Microsoft.OData.Core.Tests/HttpHeaderValueLexerTests.cs#L171...

Potential fix; Ignore comma and semi colon at the end.

@atomaras I have been unable to repro this issue. I added a test. See [commit](https://github.com/KenitoInc/odata.net/commit/e1bdcecf7989ba12b3a82f159ee3373a42545142) EntityType `Person` has an open complex type `MyOpenAddress`. I filter against dynamic property `OpenProp` property...