Steve Ives

Results 16 issues of Steve Ives

Attempting to execute a query such as: ``` https://localhost:8086/odata/v1/Customers?$expand=REL_Orders($count=true) ``` Causes a crash: ``` fail: Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware[1] An unhandled exception has occurred while executing the request. System.InvalidOperationException: Client projection contains reference...

bug

Currently, $count is only working on main collection endpoints, for example: ``` https://localhost:8086/odata/v1/Customers/$count ``` According to the OData 4 spec, it should be possible to append `/$count` to any URL...

bug
regression

We need to completely work through the scenarios for implementing API versioning in a service. We currently have partial support, with the ability to generate an API version number into...

enhancement

Occasionally a repository may not include a complete specification for the data file to be opened. In some cases only the file name is entered in the repository, the location...

documentation

The ODataModel template currently includes support for these field types: - **Alpha** - **Decimal** - **Implied Decimal** - **Date** - D8 (YYYYMMDD, MMDDYYYY and DDMMYYYY) - D6 (YYMMDD, MMDDYY and...

enhancement

Need to implement support if repository says a field is read only. But can't exclude the setter. Refer to discussion in issue #36. Aha! Link: https://synergex.aha.io/features/HC-79

bug